I\'ve spent a lot of time trying to figure out a workaround for this to no avail, so I thought I\'d see if anyone here has an idea.
I\'m using Elmah in my ASP.NET MVC3 a
Don't call the base.OnException(context); method in your custom error handler that derives from HandleErrorAttribute. You no longer need it because you have implemented a custom error handling in Application_Error.
base.OnException(context);
HandleErrorAttribute
Application_Error