IIS没有显示错误页面

时间:2016-02-03 10:24:22

标签: asp.net iis windows-8

即使连接有问题,IIS也不会在浏览器中显示任何错误页面。

我在Windows 8下使用ASP.NET。

这是我的IIS配置 enter image description here

enter image description here

的web.config:

<configuration>
   .
   .
   <system.web>
        <customErrors mode="Off"/>
        .
        .
   </system.web>

我已经有几天这个问题了。有什么想法吗?

1 个答案:

答案 0 :(得分:0)

您还可以使用命令行工具AppCmd.exe使用以下语法配置这些设置:

appcmd.exe set config&#34;默认网站&#34; -section:system.webServer / ASP / scriptErrorSentToBrowser:&#34;假&#34;

请参阅:http://www.iis.net/learn/application-frameworks/running-classic-asp-applications-on-iis-7-and-iis-8/classic-asp-script-error-messages-no-longer-shown-in-web-browser-by-default

Detailed 500 error message, ASP + IIS 7.5