摘要: net过滤非法字符 2010-05-13 21:22/**//// summary /// 过滤sql中非法字符 /// /summary /// param name="value"要过滤的字符串 /param /// returnsstring /returns public static string Filter(string value) { if (string.IsNullOrEmpty(value)) return string.Empty; value = Regex.Replace(value, @";", string.Empty) 阅读全文
posted @ 2010-12-18 16:07 西湖小巷 阅读(2855) 评论(0) 推荐(0) 编辑