首页 > 代码库 > A potentially dangerous Request.Form value was detected from the client问题处理
A potentially dangerous Request.Form value was detected from the client问题处理
问题剖析:
用户在页面上提交表单到服务器时,服务器会检测到一些潜在的输入风险,例如使用富文本编辑器控件(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问题处理
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。