Pathway To Global.asax Error Handling File Creation.

Asked By 0 points N/A Posted on -
qa-featured

I want to catch all the ASP.Net errors which are not caught by creating an error handler. Can you show me the pathway to Global.asax error handling file creation?

SHARE
Answered By 0 points N/A #296784

Pathway To Global.asax Error Handling File Creation.

qa-featured

Error handler will catch the errors which arise during request processing by ASP.Net run time. They can catch the error occurring when the user asks for the ASPX file not occurring in the app. The code for creating the file is available here.  But, you cannot output the information for requests forms the “Global.asax” file directly rather transfer through a Web Forms Page. Use Clear Error method to clear the error handling.

Related Questions