views:

61

answers:

1

Hi,

I've been doing some research on how to globally handle errors in my ASP.NET application. Can anyone suggest me a customizable error handling component to handle all .NET exception globally and log them in database(SQL, Oracle) and also send notification via mail/RSS feed.

Thanks

+1  A: 

Check out ELMAH (Error Logging Modules and Handlers).

Alek Davis
Nirajan Singh
Web Application and Web Service are just different types of ASP.NET apps, so ELMAH should work with these just fine. Regarding Windows apps (like Windows Services), I think yoy can use ELMAH, but you may need to add a couple of lines of code (and maybe make some config changes). Regarding support for different .NET version, standard compatibility rules should apply (as with any other alternative you would use).
Alek Davis