我有以下 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. 请注意,名称是区分大小写的功能。
我的问题是如何解决这个错误?