我有一个运行 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
即:确保将其添加到您的 web.config
<configuration>
<system.webServer>
<validation validateIntegratedModeConfiguration="false"/>
</system.webServer>
</configuration>