过滤关键字防止XSS攻击
摘要:public static string ClearXSS(string str) { string returnValue = str; if (string.IsNullOrEmpty(returnValue)) { return string.Empty; } ///过滤CSS Exp...
阅读全文
posted @ 2016-11-30 14:50
posted @ 2016-11-30 14:50