“检测到有潜在危险的 Request.Form(QueryString) 值”的解决方法

如果我只想将网站中的something.ashx禁用requestValidation.那么你需要在web.config中做如下修改:

configuration的子节点中添加location节点(在System.web节点之外),如下:

...
<location path="somthing.ashx">
    <system.web>
      <httpRuntime requestValidationMode="2.0"/>
      <pages validateRequest="false">pages>
    system.web>
location>
你可以添加新的location来添加需要单独设置的页面,aspx或者ashx均可.
于是就搞定了...

转载于:https://www.cnblogs.com/assur/archive/2012/08/15/2640032.html

你可能感兴趣的:(“检测到有潜在危险的 Request.Form(QueryString) 值”的解决方法)