Tagged Questions

3
votes
2answers
915 views

How to get which page threw an exception to Application_error in aspx

I have a general exception handler, Application_error in my global.asax where I'm trying to isolate all the uncaught exceptions on all my many pages. I don't want to use Page_error to catch exception ...
0
votes
0answers
53 views

Unable to redirect to custom error page from Application_Error event

I am trying to redirect to CustomError.aspx from Application_Error() from Global.asax file of my website, If exception is thrown from Application_Start(). as Request / Response has not been ...