Student Reviews
( 5 Of 5 )
1 review
Video of Error events in asp.net Part 70 in ASP.net course by kudvenkat channel, video No. 70 free certified online
Text version of the video
http://csharp-video-tutorials.blogspot.com/2012/12/error-events-in-aspnet-part-70.html
Healthy diet is very important both for the body and mind. If you like Aarvi Kitchen recipes, please support by sharing, subscribing and liking our YouTube channel. Hope you can help.
https://www.youtube.com/channel/UC7sEwIXM_YfAMyonQCrGfWA/?sub_confirmation1
Slides
http://csharp-video-tutorials.blogspot.com/2013/08/part-70-error-events-in-aspnet.html
All ASP .NET Text Articles
http://csharp-video-tutorials.blogspot.com/p/free-aspnet-video-tutorial.html
All ASP .NET Slides
http://csharp-video-tutorials.blogspot.com/p/aspnet-slides.html
All Dot Net and SQL Server Tutorials in English
https://www.youtube.com/user/kudvenkat/playlists?view1&sortdd
All Dot Net and SQL Server Tutorials in Arabic
https://www.youtube.com/c/KudvenkatArabic/playlists
Handling exceptions using try/catch blocks is commonly termed as structured exception handling. Asp.net provide 2 error events
1. Page_Error - This event is raised at the page level, when there is an unhandled exception on the page. The event handler resides on the page.
2. Application_Error - This event is raised at the application level, when there is an unhandled exception at an application level. The event handler resides in Global.asax fileThese error events can be used as a substitute or supplemental to structured exceptional handling.
Please note that
1. If the exception is not cleared in the Page_Error event, it gets propagated to the application level, and Application_Error event handler gets executed. If we are not clearing the exception at the application level, the application crashes with the "Yellow Screen of Death".
2. If the exception is cleared and redirection to Errors.aspx is not done, then a blank page is displayed. This is because web form processing is immediately stopped when an exception occurs.
If an exception is not handled at the page level using Page_Error event, it get's to the application level and can be handled using the Application_Error event handler in Global.asax and can be used as a single, centralized location for error handling.