huangtailang

 

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>

分类:

技术点:

相关文章:

  • 2021-08-30
  • 2021-04-18
  • 2022-01-28
  • 2021-06-30
  • 2022-12-23
  • 2022-12-23
  • 2021-06-14
猜你喜欢
  • 2022-01-21
  • 2022-12-23
  • 2022-12-23
  • 2021-09-05
  • 2022-01-03
相关资源
相似解决方案