ASP.NET Exception Handling, Try/catch block, Error Events Custom, Error Pages, Interview questions

ASP.NET - Ways of handling exceptions in ASP.NET - Exceptions or errors are unusual occurrences that happen within the logic of an application. ..
ASP.NET - Explain Try/catch block method of exception handling - There are three ways to handle exceptions in ASP.NET...
ASP.NET - Error Events method of exception handling - You can enclose code in Try/Catch/Finally block.......
ASP.NET - Custom Error Pages method of exception handling - ASP.NET supports events that occur when any unhandled exception occurs in an application. These events are called as Error Events...
ASP.NET - Why is exception handling important to an application? - Exception handling is used to prevent application from being stuck due to unusual occurrences...
ASP.NET - When can you use tracing with exception handling? - You can use tracing with exception handling to log unanticipated exception to the trace log......