码迷,mamicode.com
首页 > Web开发 > 详细

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

时间:2014-05-15 21:32:22      阅读:398      评论:0      收藏:0      [点我收藏+]

标签:style   blog   class   code   c   color   

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

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

<%@ Page Language="C#" AutoEventWireup="true" CodeFile="MaddAptitude.aspx.cs" Inherits="MaddAptitude" %>

中加一句  ValidateRequest="false"  。

或者在web.config文档<system.web>后面加入这一句: <pages validaterequest="false"/> ,例如:

1
2
3
4
5
<configuration>
    <system.web>
        <pages validaterequest="false"/>
    </system.web>
</configuration>

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

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

  

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

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

标签:style   blog   class   code   c   color   

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

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