标签:style blog class code c tar
解决方法:
在Web.config文件里找到<httpRuntime>节点,然后修改requestValidationMode="2.0"
修改结果如下:
<system.web> <httpRuntime targetFramework="4.5" requestValidationMode="2.0"/> <system.web>
如果是asp.net应用程序
<% @ Page ValidateRequest="false" %>
如果是asp.net mvc应用程序
[ HttpPost] [ ValidateInput(false )] public ActionResult NewsEdit( FormCollection form) {}
Asp.net 从客户端中检测到有潜在危险的Request.Form值,布布扣,bubuko.com
Asp.net 从客户端中检测到有潜在危险的Request.Form值
标签:style blog class code c tar
原文地址:http://www.cnblogs.com/sydeveloper/p/3735318.html