MVC中”从客户端检测到有潜在危险的Request.Form值“的解决方法

2020-12-13 03:55

阅读:255

标签:style   blog   class   code   c   color   

从客户端检测到有潜在危险的Request.Form值:

在webForm中,可以在aspx页面顶部

"C#" AutoEventWireup="true" CodeFile="MaddAptitude.aspx.cs" Inherits="MaddAptitude" %>

中加一句  ValidateRequest="false"  。

或者在web.config文档后面加入这一句: ,例如:

?
1
2
3
4
5
    
        "false"/>
    

在MVC中,可以在controller里面加 [ValidateInput(false)] ,例如:

?
1
2
3
4
5
6
[ValidateInput(false)] 
 public class AdminController : Controller
 {
     ........
     return View();
 }

  

MVC中”从客户端检测到有潜在危险的Request.Form值“的解决方法,搜素材,soscw.com

MVC中”从客户端检测到有潜在危险的Request.Form值“的解决方法

标签:style   blog   class   code   c   color   

原文地址:http://www.cnblogs.com/qk2014/p/3729739.html


评论


亲,登录后才可以留言!