如果我只想将网站中的something.ashx禁用requestValidation.那么你需要在web.config中做如下修改:
在
configuration的子节点中添加location节点(在System.web节点之外),如下:
<system.web>
...
</system.web>
<location path="somthing.ashx">
<system.web>
<httpRuntime requestValidationMode="2.0"/>
<pages validateRequest="false"></pages>
</system.web>
</location>
你可以添加新的location来添加需要单独设置的页面,aspx或者ashx均可.
于是就搞定了...