Exception handling in ASP.NET

Describe exception handling in ASP.NET.

- Exception handling correct unusual occurrences and prevent application from getting terminated.
- Whenever an exception occurs within an application a yellow page appears.

There are three ways by which you can handle these exceptions:

1. Using the try-catch block.
2. Using the error events.
3. Custom error pages.
What are the exception-handling ways in ASP.NET?
ASP.NET - What are the exception-handling ways in ASP.NET? - Exceptions can be handled by using Try(try) block and Error event procedures at the global...
Use of error pages in ASP.NET
ASP.NET - Use of error pages in ASP.NET - Error pages are used when exceptions are outside the scope of the application and the application can’t respond directly to these exceptions. ..
What is tracing in ASP.NET?
ASP.NET - What is tracing in ASP.NET? - Tracing records unusual events while an application is running...
Post your comment