无法在webconfig中设置httpRuntime requestValidationMode =“2.0”

时间:2012-09-25 12:42:26

标签: asp.net .net .net-4.0

我已经从2.0到4.0推出了一个Web应用程序。

我遇到了validateRequest =“false”的问题,我需要从aspx页面读取一个xml文件(该页面由另一个网站调用,用户看不到它)。它在2.0中运行良好。现在其他网站返回错误500。 我在google上发现,在webconfig system.web中,我必须设置但属性requestValidationMode无效(并且intellisense不会在VS中显示给我)...

我该怎么做?

感谢名单

1 个答案:

答案 0 :(得分:0)

您添加此代码

<system.web>
    <compilation debug="true" targetFramework="4.0" />
    <httpRuntime requestValidationMode="2.0" />
</system.web>

Nota : On IIS :  Right click on WebSite 
                 - Select> Properties > ASP.NET > Version > 
                 - Select 4.0.21006 not 2.0