Global Error Handler (ASP.Net)
Overview
With ASP.Net we can now globally trap errors that occur anywhere in our site. This makes debugging errors your clients are receiving much easier.This global error handler is so usefull, it is installed on every web project I work on.
This software is released under the JPL
NOTE: to get this to work in ASP.net 2.0 you will need to add the following line before the SmtpSend call...
System.Web.Mail.SmtpMail.SmtpServer = "localhost";
Features
- Output to bowser
- Output to email
- Report consists of query string, form post data, session data, application data, and cookie data.
Change Log
- 1.2.0 - Jun 21, 2005
- Fixed minor bugs in the Html display.
- Changed method names.
- Added documentation to the methods.
- Added compiled documentation to the project.
- 1.0.3 - Jun 7, 2005
- Inner exceptions now captured.
- Added additional debug information.
- Minor cosmetic changes.
- 1.0.2 - Aug 5, 2004
- Added ability to change from and subject (in error email).
Screenshot

Links
- Global Error Handler in ASP.NET's control gallery
- Global Error Handler in 411ASP.NET's control gallery