MVC中”从客户端检测到有潜在危险的Request.Form值“的解决方法
2020-12-13 03:55
标签:style blog class code c color 从客户端检测到有潜在危险的Request.Form值: 在webForm中,可以在aspx页面顶部 中加一句 ValidateRequest="false" 。 或者在web.config文档 在MVC中,可以在controller里面加 [ValidateInput(false)] ,例如: MVC中”从客户端检测到有潜在危险的Request.Form值“的解决方法,搜素材,soscw.com MVC中”从客户端检测到有潜在危险的Request.Form值“的解决方法 标签:style blog class code c color 原文地址:http://www.cnblogs.com/qk2014/p/3729739.html"C#" AutoEventWireup="true" CodeFile="MaddAptitude.aspx.cs" Inherits="MaddAptitude" %>
"false"
/>
[ValidateInput(
false
)]
public
class
AdminController : Controller
{
........
return
View();
}
下一篇:windows设计
文章标题:MVC中”从客户端检测到有潜在危险的Request.Form值“的解决方法
文章链接:http://soscw.com/essay/28518.html