All articles(网络文学目录) All Pictures(图片目录) All Softwares(软件目录)

 
此方法用于确认用户输入的不是恶意信息_[Asp.Net教程]

Writer: delv Article type: Programming skills(编程技巧) Time: 2014/1/10 6:32:17 Browse times: 279 Comment times: 0

此方法用于确认用户输入的不是恶意信息_[Asp.Net教程]


Head photo

Go homepage
Upload pictures
Write articles

此方法用于确认用户输入的不是恶意信息_[Asp.Net教程]

参照petshop 4.0
///


/// 此方法用于确认用户输入的不是恶意信息
///

/// 用户输入信息
/// 输入的最大长度
/// 处理后的输入信息
public static string InputText(string text, int maxLength) {
text = text.Trim();
if (string.IsNullOrEmpty(text))
return string.Empty;
if (text.Length > maxLength)
text = text.Substring(0, maxLength);
//将网页中非法和有攻击性的符号替换掉,以防sql注入!返回正常数据
text = Regex.Replace(text, "[\\s]{2,}", " "); // 2个或以上的空格
text = Regex.Replace(text, "(<[b|B][r|R]/*>)+|(<[p|P](.|\\n)*?>)", "\n"); // html换行符
text = Regex.Replace(text, "(\\s*&[n|N][b|B][s|S][p|P];\\s*)+", " "); //&nbsp; html空格符
text = Regex.Replace(text, "<(.|\\n)*?>", string.Empty); // 任何其他的标签
text = text.Replace("'", "''");// 单引号
return text;
}


http://www.cnblogs.com/wang123/archive/2007/01/16/622035.html





There are 0 records,
Comment:
Must be registered users to comment(必须是注册用户才能发表评论)

Disclaimer Privacy Policy About us Site Map
Copyright ©2011-
uuhomepage.com, Inc. All rights reserved.