How to get which page threw an exception to Applic

2020-02-05 12:04发布

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 because it's inefficient to call that on so many pages. So where in the exception can I find what page actually caused the exception?

2条回答
家丑人穷心不美
2楼-- · 2020-02-05 12:24
HttpContext con = HttpContext.Current;
con.Request.Url.ToString()
查看更多
兄弟一词,经得起流年.
3楼-- · 2020-02-05 12:41

Remember, the page is not (should not) always be the cause of the exception. It could just as easily be coming from another assembly - and if you don't have your logic in your codebehinds, it likely will be coming from another assembly. Don't get me wrong, it is great to know which page, from the aspect of saying X Page caused Y exception in Z assembly.

查看更多
登录 后发表回答