The ASP.NET Global Error Handler is a HttpModule designed to assist with the notification of application level errors. Traditionally developers interested in receiving e-mail notifications regarding application errors will end up placing custom code in the Global.asax file to handle errors and send the e-mails, with this HttpModule you no longer need to do that.
By simply adding 3 small sections to your web.config file, and 1 .dll file to your bin directory you will have a fully customizable error reporting system. The ASP.NET Global Error Handler offers the following great features.
- Easy configuration
- Ability to disable error handling with 1 setting
- Ability to specify different SMTP information for e-mail notification
- Ability to fully customize the e-mails that are sent regarding errors
- Ability to allow either HTML or Plain-Text e-mails
- Ability to redirect users to a common location after the email has been sent
The best part is that this module is FREE! You may obtain all needed files via the "Download" section at the bottom of this page!
For assistance with the setup of the GlobalErrorHandler please see the Examples document and instructions documents linked below. If further assistance is needed, please feel free to post to our support forum where we will gladly assist.