Pages

Friday 11 January 2013

Turn off Asp.net Custom Errors in Web.config

Some times after hosting web application on the server, we get unexpected error as shown in the below fig. But we did get the detailed message for the unexpected errror. In this article, I would like to share how can we get detailed message for the unexpected error.
This type of unexpected error may occurs on local or remote server. In asp.net, we can find the exact error message by setting mode="Off" with in customErrors tag in web.config of our application. This is the way by which we can find out the exact error in our web application.
  1. <system.web>
  2. <customErrors mode="Off">
  3. </customErrors>
  4. ...
  5. ...
  6. </system.web>
When we set the customErrors mode="Off" then we can easily track the error in the application as shown in the fig.
In Asp.net, there are three error modes to trace an error. These modes decide whether or not an error message is displayed. RemoteOnly mode is default mode for displaying error messages.
  1. Off Mode

    This mode is responsible for displaying error mesage on local and remote server in case of an error.
  2. On Mode

    This mode is responsible for displaying custom error page with message on local and remote server in case of an error. By using this mode, we can show our own custom error messages page for specific errors on local and remote server.
  3. RemoteOnly

    This mode is responsible for displaying error mesage on remote server only in case of an error. By using this mode, we can show our own custom error messages page for specific errors on remote server only.

No comments:

Post a Comment