检测到 ASP.NET 设置不适用于集成托管管道模式

检测到 ASP.NET 设置不适用于集成托管管道模式

我有一个运行 IIS 7 的 plesk 10.2 共享主机。尝试运行 .Net 4.0 网站。它出现以下错误:

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

找到这个链接

http://forum.parallels.com/pda/index.php/t-95091.html

但在控制面板中找不到处理程序映射部分。

有什么解决办法吗?

答案1

您可以在这里找到答案: https://stackoverflow.com/questions/4209999/an-asp-net-setting-has-been-detected-that-does-not-apply-in-integrated-managed-p

即:确保将其添加到您的 web.config

<configuration>
  <system.webServer>
    <validation validateIntegratedModeConfiguration="false"/>
  </system.webServer>
</configuration>

相关内容