码迷,mamicode.com
首页 > 其他好文 > 详细

A potentially dangerous Request.Form value was detected from the client问题处理

时间:2014-11-26 13:37:56      阅读:161      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   io   ar   使用   sp   for   strong   

bubuko.com,布布扣 

问题剖析:

用户在页面上提交表单到服务器时,服务器会检测到一些潜在的输入风险,例如使用富文本编辑器控件(RichTextBox、FreeTextBox、CuteEditor等)编辑的内容中包含有HTML标记或脚本标记,ASP.NET页面会

抛出一个"A potentially dangerous Request.Form value was deceted from the client"的异常。

这个是ASP.NET页面为了防范页面注入功能的一种保护机制,要取消这种保护,需要在配置文件中加入以下代码。

 

得到解决:

1、Web.config文件增加 以下节点。

<system.web>
     <httpRuntime requestValidationMode="2.0" />
</system.web>

 

A potentially dangerous Request.Form value was detected from the client问题处理

标签:style   blog   http   io   ar   使用   sp   for   strong   

原文地址:http://www.cnblogs.com/YangPeng/p/4122860.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!