How To Handle Exception in Asp.Net ?
shaikh shahbaz
There are three ways to handle exceptions/errors in ASP.NET:
We can catch and handle errors at three levels
1. At the method level by using try...catch blocks for performing exception handling.
2.At the page level by using Page.Error event.Any error on the page - except for those within try...catch blocks will raise this event.
3.At the application level by: a) Using the Application_Error event in a global.asax file. b) Using the web.config file .Any error within the application that are not handled by the previous methods will display the error handling page.