500 – Internal server error.

There is a problem with the resource you are looking for, and it cannot be displayed.

原因:Windows2008的系统和II7下Web.confing出错,网站并不提示以下错误 

“/”应用程序中的服务器错误。


配置错误

解决办法:

在根目录下添加Web.config文件,内容如下

<configuration>
    <system.webServer>
        <httpErrors errorMode=”Detailed” />
        <asp scriptErrorSentToBrowser=”true”/>
    </system.webServer>
    <system.web>
        <customErrors mode=”Off”/>
        <compilation debug=”true”/>
    </system.web>
</configuration>

版权声明:本文为huangtailang原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。
本文链接:https://www.cnblogs.com/huangtailang/archive/2011/09/01/2162334.html