Handling errors in global.asax file

The code should be written in global.asax application-error event


ex = Server.GetLastError().GetBaseException();

if (ex.GetType()==typeof(System .IO.FileNotFoundException))

{
Response .Redirect ("error.aspx");
}


Explanation:

By exception object getting base exception last error,Checking the type of error ,if file is not found redirect the user to error.aspx


Comments

No responses found. Be the first to comment...


  • Do not include your name, "with regards" etc in the comment. Write detailed comment, relevant to the topic.
  • No HTML formatting and links to other web sites are allowed.
  • This is a strictly moderated site. Absolutely no spam allowed.
  • Name:
    Email: