December 2002
Beginner
624 pages
12h 9m
English
IN THIS CHAPTER
An ASP.NET application raises certain events at the application level. For example, an application event is raised whenever a new user requests a page, whenever an application shuts down, and whenever an unhandled exception occurs.
This chapter discusses two methods of handling application-wide events. You learn how to implement application event-handlers both by using the Global.asax file and by using custom HttpModules. In particular, in this chapter you will learn
How to automatically track errors in your application with the Global.asax file
How to rewrite requests for one page into requests for another page in the Global.asax file
How ...