7

嗨,我试图在 Windows 7 Enterprise 的网络上部署我的 ASP:NET 网站,我收到此错误:

HTTP Error 500.23 - Internal Server Error
An ASP.NET setting has been detected that does not apply in Integrated managed pipeline   
mode.

我进行了一些搜索,例如将应用程序池从“集成”更改为“经典”。它并没有真正帮助我成为另一个错误:

HTTP Error 404.2 Error - Not found
ISAPI- and CGI-Restrictions

任何人都可以帮助我指出正确的方向吗?

4

1 回答 1

32

为 HTTP 错误 500.23 添加到 web.config - 内部服务器错误 检测到 ASP.NET 设置不适用于集成托管管道
模式。

<system.webServer>
    <validation validateIntegratedModeConfiguration="false"/>
  </system.webServer>
于 2013-11-21T11:26:37.413 回答