Last active
August 29, 2015 14:20
-
-
Save coreypnorris/981571063f4eb83e2e9d to your computer and use it in GitHub Desktop.
Enabling/disabling the user error page.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <system.web> | |
| <customErrors mode="On"></customErrors> | |
| <customErrors mode="Off"></customErrors> | |
| // RemoteOnly will show the yellow screen of death in the local enviornment but not the user enviornment. | |
| <customErrors mode="RemoteOnly"></customErrors> | |
| </system.web> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment