摘要: JSON(JavaScriptObject Notation, JS 对象标记) 是一种轻量级的数据交换格式。 关于内存对象和JSON字符串的相互转换,在实际项目中应比较广泛,经过一番搜索,找到如下三种方法来解决此问题 分别是使用Newtonsoft.Json.dll、DataContractJso 阅读全文
posted @ 2022-09-29 20:19 每天进步多一点 阅读(2129) 评论(0) 推荐(1) 编辑
摘要: public class Net { /// <summary> /// 获取Ip /// </summary> public static string Ip { get { string text = string.Empty; bool flag = HttpContext.Current ! 阅读全文
posted @ 2022-09-29 20:00 每天进步多一点 阅读(42) 评论(0) 推荐(0) 编辑
摘要: /// <summary> /// Web操作 /// </summary> public static class WebHelper { /// <summary> /// 获取主机名,即域名, /// 范例:用户输入网址http://www.a.com/b.htm?a=1&amp;b=2, / 阅读全文
posted @ 2022-09-29 19:41 每天进步多一点 阅读(34) 评论(0) 推荐(0) 编辑
摘要: public class Cache { private static Cache _cache = HttpRuntime.Cache; /// <summary> /// 本地缓存获取 /// </summary> /// <param name="name">key</param> /// < 阅读全文
posted @ 2022-09-29 19:38 每天进步多一点 阅读(31) 评论(0) 推荐(0) 编辑