我有以下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>
问题是targetFramework
和requestValidationMode
下有错误。
但我得到了错误:
Unrecognized attribute 'requestValidationMode. Note that names are case-sensitive features.
无法识别的属性'targetFramework。请注意,名称是区分大小写的功能。
我的问题是如何修复此错误?
答案 0 :(得分:0)
requestValidationMode
和targetFramework
特定于.NET 4.0+,因此您无法在ASP.NET 3.5项目中使用它们。