A potentially dangerous Request.Form value was detected from the client

来源:互联网 发布:户型优化设计合同 编辑:程序博客网 时间:2024/05/20 01:36

In Web Config ,


Add this to <system.web> tag : 


<httpRuntime requestValidationMode="2.0"/><configuration>    <system.web>        <pages validateRequest="false" />    </system.web></configuration>


0 0