次の 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. 名前は大文字と小文字が区別されることに注意してください。
私の質問は、どうすればこのエラーを修正できますか?