ELMAH

TwitterFacebook
Get flash to fully experience Pearltrees

Implementing Error Handling with Stored Procedures

An SQL text by Erland Sommarskog , SQL Server MVP. Last revision 2009-11-29. This is one of two articles about error handling in SQL 2000. This article gives you recommendations for how you should implement error handling when you write stored procedures, including when you call them from ADO. http://www.sommarskog.se/error-handling-II.html
http://code.google.com/p/elmah/

elmah - Google Code

ELMAH (Error Logging Modules and Handlers) is an application-wide error logging facility that is completely pluggable. It can be dynamically added to a running ASP.NET web application, or even all ASP.NET web applications on a machine, without any need for re-compilation or re-deployment. Once ELMAH has been dropped into a running web application and configured appropriately, you get the following facilities without changing a single line of your code:
ELMAH is an open source project whose purpose is to log and report unhandled exceptions in ASP.NET web applications. Since its first public release back in 2004 as a sample to the MSDN article Using HTTP Modules and Handlers to Create Pluggable ASP.NET Components , it has gained many new features and extended its support for newer ASP.NET releases - yet without dropping compatibility with older ones. This article provides a comprehensive overview of the project as well as a detailed guide about setting it up under different environments. Note: This article is based on the BETA 2 release of ELMAH 1.0 and therefore some details may possibly change by the time it is released. Once the RTM release is reached this article will be updated to reflect changes and include new features. http://dotnetslackers.com/articles/aspnet/ErrorLoggingModulesAndHandlers.aspx#362

ELMAH - Error Logging Modules And Handlers