摘要: /// /// 格式化文本(防止SQL注入) /// /// /// public static string Formatstr(string html) { Regex regex1 = new Regex(@"标记 html = rege... 阅读全文
posted @ 2018-10-01 11:47 紅人 阅读(1086) 评论(0) 推荐(0) 编辑
摘要: /// /// 对Url进行编码 /// /// url /// 编码字符是否转成大写,范例,"http://"转成"http%3A%2F%2F" public static string UrlEncode(string url, bool isUpper = false) { ... 阅读全文
posted @ 2018-10-01 11:46 紅人 阅读(17385) 评论(0) 推荐(3) 编辑
摘要: /// /// 对html字符串进行编码 /// /// html字符串 public static string HtmlEncode(string html) { return HttpUtility.HtmlEncode(html); } //... 阅读全文
posted @ 2018-10-01 11:43 紅人 阅读(3051) 评论(0) 推荐(1) 编辑
摘要: /// /// 解析相对Url /// /// 相对Url public static string ResolveUrl(string relativeUrl) { if (string.IsNullOrWhiteSpace(relativeUrl)) ... 阅读全文
posted @ 2018-10-01 11:42 紅人 阅读(868) 评论(0) 推荐(0) 编辑
摘要: /// /// 获取本机IP /// /// public static string GetLocalIP() { try { string HostName = Dns.GetHostName(); //得到主机名 ... 阅读全文
posted @ 2018-10-01 11:41 紅人 阅读(383) 评论(0) 推荐(0) 编辑
摘要: /// /// 是否为ip /// /// /// public static bool IsIP(string ip) { return Regex.IsMatch(ip, @"^((2[0-4]\d|25[0-5]|[01]?\d\d?)\.){3}(2[0-4]... 阅读全文
posted @ 2018-10-01 11:39 紅人 阅读(429) 评论(0) 推荐(0) 编辑
摘要: using System; using System.Collections.Generic; using System.Linq; using System.Linq.Expressions; using System.Reflection; using System.Text; using System.Threading.Tasks; namespace EasyFrame.Common... 阅读全文
posted @ 2018-10-01 11:38 紅人 阅读(1203) 评论(1) 推荐(1) 编辑
摘要: using System; using System.Collections.Generic; using System.Text; using System.Configuration; using System.IO; using System.Web; using System.Net.Mail; using System.Net; using System.ComponentModel;... 阅读全文
posted @ 2018-10-01 11:38 紅人 阅读(395) 评论(0) 推荐(0) 编辑
摘要: using System; using System.Collections.Generic; using System.Linq; using Newtonsoft.Json; using Newtonsoft.Json.Converters; using System.Reflection; using System.Data; using Newtonsoft.Json.Linq; na... 阅读全文
posted @ 2018-10-01 11:02 紅人 阅读(376) 评论(0) 推荐(0) 编辑
摘要: using NPOI.SS.UserModel; using NPOI.XSSF.UserModel; using System; using System.Collections.Generic; using System.Data; using System.IO; using System.Linq; using Newtonsoft.Json; namespace EasyFrame.C... 阅读全文
posted @ 2018-10-01 10:58 紅人 阅读(1763) 评论(0) 推荐(0) 编辑
摘要: /// /// UTF-16转UTF-8 /// /// /// public static string UTF16To8(string str) { string res; int i, len, c; res =... 阅读全文
posted @ 2018-10-01 10:56 紅人 阅读(4037) 评论(0) 推荐(0) 编辑
摘要: private static string base64EncodeChars = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/"; private static int[] base64DecodeChars ={ -1, -1, -1, -1, -1, -1, ... 阅读全文
posted @ 2018-10-01 10:55 紅人 阅读(1103) 评论(0) 推荐(0) 编辑
摘要: public static T Deserialize(S stream) where S : Stream where T : class, new() { using (stream) { BinaryFormatter formatter = new BinaryFormatter();... 阅读全文
posted @ 2018-09-28 21:03 紅人 阅读(235) 评论(0) 推荐(0) 编辑
摘要: public static T Deserialize(string content) where T : class, new() { return JsonConvert.DeserializeObject(content); } public static string Serialize(T obj) wh... 阅读全文
posted @ 2018-09-28 21:02 紅人 阅读(1041) 评论(0) 推荐(0) 编辑
摘要: public static T Deserialize(S stream) where S : Stream where T : class, new() { using (stream) { XmlSerializer xmlSearializer = new XmlSerializer(type... 阅读全文
posted @ 2018-09-28 21:02 紅人 阅读(238) 评论(0) 推荐(0) 编辑
摘要: public static string ReplaceStr(string originalStr, string oldStr, string newStr) { if (string.IsNullOrEmpty(oldStr)) { return ""; } ... 阅读全文
posted @ 2018-09-28 21:01 紅人 阅读(959) 评论(0) 推荐(0) 编辑
摘要: public static bool CheckAgent() { bool flag = false; string agent = HttpContext.Current.Request.UserAgent; string[] keywords = { "Android", "iPhone", "iP... 阅读全文
posted @ 2018-09-28 20:59 紅人 阅读(1501) 评论(0) 推荐(0) 编辑
摘要: /// /// 获得当前绝对路径 /// /// 指定的路径 /// 绝对路径 public static string GetMapPath(string strPath) { if (strPath.ToLower().StartsWith("http://")) ... 阅读全文
posted @ 2018-09-28 20:57 紅人 阅读(189) 评论(0) 推荐(0) 编辑
摘要: /// /// 获得当前绝对路径 /// /// 指定的路径 /// 绝对路径 public static string GetMapPath(string strPath) { if (strPath.ToLower().StartsWith("http://")) ... 阅读全文
posted @ 2018-09-28 20:54 紅人 阅读(1041) 评论(0) 推荐(1) 编辑
摘要: /// /// 过滤特殊字符 /// /// /// public static string Htmls(string Input) { if (Input != string.Empty && Input != null) { ... 阅读全文
posted @ 2018-09-28 20:53 紅人 阅读(2051) 评论(0) 推荐(0) 编辑