为什么我一直收到500内部服务器错误?

时间:2014-07-25 20:55:12

标签: c# asp.net xml web-config

我构建了一个Asp.net网页,我有一个站点主文件,但是当我运行它时,我一直收到500错误。我知道它与我的web.config文件有关,但我不知道该放入什么内容?

Web.Config中:

<?xml version="1.0" encoding="utf-8"?>
<configuration>
  <system.web>
    <compilation targetFramework="4.5" />
    <httpRuntime targetFramework="4.5" />
  </system.web>
</configuration>

我带走了&#34;&#34;,所以现在它说&#34;无法识别的属性&#39; targetFramework&#39;。请注意,属性名称区分大小写&#34;。

1 个答案:

答案 0 :(得分:2)

您正在IIS中的.NET 2.0框架下运行应用程序池,从错误消息判断。将其更改为在.NET 4.0下运行,您的错误应该得到解决。