Detailed 500 error message, ASP + IIS 7.5

后端 未结 13 1164
北荒
北荒 2020-11-22 03:52

IIS 7.5 , 2008rc2, classic asp, 500 error msg:

The page cannot be displayed because an internal server error has occurred.

I nee

相关标签:
13条回答
  • 2020-11-22 04:26

    If you're on a remote server you can configure your web.config file like so:

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

    0 讨论(0)
提交回复
热议问题