Follow these easy steps
- Start > Run > inetmgr
- Right click on web application for which you want to enable error details.
- ASP.NET Tab, copy file location for web.config file
- Open file in notepad
- Make following changes
Old Value | New value |
<SafeMode MaxControls="200" CallStack="false"> | <SafeMode MaxControls="200" CallStack="true"> |
<customErrors mode="On" /> | <customErrors mode="Off" /> |
<compilation batch="false" debug="false"> | <compilation batch="true" debug="true"> |
2 comments:
Thanks for making a simple process simple to understand!
I've seen a few other blogs on this topic and they do not explain it as well as you.
Nice one!
your welcome steve
Post a Comment