Web.config页面 - ASP.NET 3.5错误

时间:2013-05-29 07:00:10

标签: asp.net configuration web-config

我有以下web.config页面(我的站点在ASP.NET 3.5中):

<?xml version="1.0"?>
<configuration>
  <system.web>
    <compilation debug="true" targetFramework="3.0"/>
    <pages validateRequest="false"/>
    <httpRuntime requestValidationMode="2.0" />
  </system.web>
</configuratiotn>

问题是targetFrameworkrequestValidationMode下有错误。

但我得到了错误:

Unrecognized attribute 'requestValidationMode. Note that names are case-sensitive features.
  

无法识别的属性'targetFramework。请注意,名称是区分大小写的功能。

我的问题是如何修复此错误?

1 个答案:

答案 0 :(得分:0)

requestValidationModetargetFramework特定于.NET 4.0+,因此您无法在ASP.NET 3.5项目中使用它们。