我是 ASP.NET(4.0) 中的新开发人员。我开发了一个网站,它完全可以在我的本地系统中运行。但是现在我将所有文件上传到服务器,当我加载任何页面时,Web.config文件中出现错误。
我的 Web.Config 代码是这样的:
<?xml version="1.0" ?>
<configuration>
<connectionStrings>
</connectionStrings>
<system.web>
<compilation debug="true" targetFramework="4.0"/>
<customErrors mode="Off"/>
<authentication mode="None"/>
</system.web>
</configuration>
错误是这样的(当我在服务器上运行时):
“/”应用程序中的服务器错误。 配置错误 描述:处理服务此请求所需的配置文件期间发生错误。请查看下面的具体错误详细信息并适当地修改您的配置文件。
解析器错误消息:无法识别的属性“targetFramework”。请注意,属性名称区分大小写。
源错误:
</connectionStrings>
<system.web>
<compilation debug="true" targetFramework="4.0"/>
<customErrors mode="Off"/>
<authentication mode="None"/>
版本信息: Microsoft .NET Framework 版本:2.0.50727.5456;ASP.NET 版本:2.0.50727.5456