All articles| All Pictures| All Softwares| All Video| Go home page| Write articles| Upload pictures

Reading number is top 10 articles
char、varchar、text和nchar、nvarchar、ntext的区别_[SQL Server教程]
ASP.NET中上传并读取Excel文件数据_[Asp.Net教程]
网页两侧浮动广告代码_JavaScript技术_编程技术
网页申请表单用户体验设计简述_[Html教程]_0
扩展GridView(三)——单击命令按钮弹出确认框_[Asp.Net教程]
解决PHP的Failed,opening,required问题_php资料_编程技术
Asp.net中创建和使用Ado.net_[Asp.Net教程]
ASP.NET实现投票结果的图片进度条显示代码_[Asp.Net教程]
如何实现SQL Server 2005快速web分页_[SQL Server教程]
HTML语言剖析(十一)排版标记_[Html教程]_0
Reading number is top 10 pictures
恶搞漫画1
9.3阅兵全景图3-外国方阵梯队和坦克方阵梯队
泳装名模阿尔贝特妮写真2
The household design, do not do bridal chamber a pity
China railway shunting skills competition
Black and white also sexy--YanLiu1
Group of female porn in 《westwards》, uninhibited woman threatened to not the bottom line
2012 national geographic daily picture7
Gang rape
Startling Russian girl blind date scene3
Download software ranking
WebService在.NET中的实战应用教学视频 → 第2集
Love the forty days
卡丁车单机版
Unix video tutorial4
Unix video tutorial2
Boxer's Top ten classic battle8
Proficient in JavaScript
Boxer Classic video2
Tram sex maniac 2 (H) rar bag7
传奇私服架设教程
aaa published in(发表于) 2013/12/13 9:43:51 Edit(编辑)
此方法用于确认用户输入的不是恶意信息_.net资料_编程技术

此方法用于确认用户输入的不是恶意信息_.net资料_编程技术

此方法用于确认用户输入的不是恶意信息_.net资料_编程技术-你的首页-uuhomepage.com







参照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;
}









关键词:
推荐给好友】【关闭

















最新五条评论



查看全部评论



评论总数 0




































您的评论
















用户名:


新注册


密 码:





匿名:




































·用户发表意见仅代表其个人意见,并且承担一切因发表内容引起的纠纷和责任



·本站管理人员有权在不通知用户的情况下删除不符合规定的评论信息或留做证据



·请客观的评价您所看到的资讯,提倡就事论事,杜绝漫骂和人身攻击等不文明行为



































添加到del.icio.us 添加到新浪ViVi 添加到百度搜藏 添加到POCO网摘 添加到天天网摘365Key 添加到和讯网摘 添加到天极网摘 添加到黑米书签 添加到QQ书签 添加到雅虎收藏 添加到奇客发现 diigo it 添加到饭否 添加到飞豆订阅 添加到抓虾收藏 添加到鲜果订阅 digg it 貼到funP 添加到有道阅读 Live Favorites 添加到Newsvine 打印本页 用Email发送本页 在Facebook上分享


Disclaimer Privacy Policy About us Site Map

If you have any requirements, please contact webmaster。(如果有什么要求,请联系站长)
Copyright ©2011-
uuhomepage.com, Inc. All rights reserved.