I've been looking for a way to log unhandled exceptions that occur in asp.net static page methods (which are called via javascript from the browser).
This question led me to setup ELMAH but unfortunately I'm back at square one because it doesn't catch these exceptions. (it is working perfectly for exceptions during regular page cycle however).
I've tried adding the MsAjaxDeltaErrorLog
http module but this has no effect (I'm using .NET 3.5 anyway).
Is it actually possible for these errors to be logged without wrapping every single method in a try / catch?