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)

link|improve this question

40% accept rate
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 Feb 8 '10 at 13:37
feedback

migrated from stackoverflow.com Feb 8 '10 at 12:31

This question came from our site for professional and enthusiast programmers.

1 Answer

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>
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.