Tagged Questions
3
votes
2answers
914 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 ...
1
vote
2answers
130 views
How to know if the request is ajax in asp.net in Application_Error()
How to know if the request is ajax in asp.net in Application_Error()
I want to handle app error in Application_Error().If the request is ajax and some exception is thrown,then write the error in ...
1
vote
2answers
89 views
Is it possible set cookies in Application_error
I'm trying to see if I can set a cookie during the Application_Error() event of the global.asax.
When I debug my application, it looks like the code adds the cookie but the next time it loads, the ...