0

我有以下 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. 请注意,名称是区分大小写的功能。

我的问题是如何解决这个错误?

4

1 回答 1

0

requestValidationMode并且targetFramework是 .NET 4.0+ 特定的,因此您不能在 ASP.NET 3.5 项目中使用它们。

于 2013-05-29T07:03:23.363 回答