1

I decided to post this because I battled to find out how to do it and couldnt see anything on Stackoverflow about it.

Often when you host with a provider like GoDaddy, they have "Custom Error Messages" set to ON. What I didnt realise was that the web.config settings dont just apply to ASP.NET, they apply to all applications on YOUR IIS site and hence will sort this problem out for Classic ASP as well (very few GoDaddy support people even know this)

Jeff Atwood
  • 13,104
  • 20
  • 75
  • 92
Jimbo
  • 309
  • 1
  • 5
  • 16
  • This is not a question, please restructure it in the format of Question and Answer, it's fine to answer your own question if you think is relevant info for everyone, but it needs to be in the right format. – Sam Cogan Feb 08 '10 at 13:37

1 Answers1

2

All you need to do is add the following to your web.config OR, for those using Classic ASP, just create a web.config file in your ROOT with this code in it.

<configuration>
<system.webServer>
<asp scriptErrorSentToBrowser="true"/>
<httpErrors errorMode="Detailed"/> 
</system.webServer>
</configuration>
Jeff Atwood
  • 13,104
  • 20
  • 75
  • 92
Jimbo
  • 309
  • 1
  • 5
  • 16