Archive for March, 2008

Error handling

Errors can be handled at three different levels of the ASP.NET web application – app, page or code (class). To handle errors at the application level, the developer has two files at their command: global.asax and web.config.
At the page level, the developer can use the Page_Error event handler, and at the code level, developers can [...]