0
kicks
Exception handling in ASP.NET
Exception handling is one of the key parts of software development. Developers use various techniques to handle exception in ASP.NET application. This is one of the techniques to handle exceptions globally using global.asax page and web.config. In this article, we will discuss how we can avoid try... catch... block in every single line of code we write and handle exception globally in one single location in global.asax.