How do ASP.NET Application_ Events Work
Posted by: Rick Strahls WebLog,
on 19 Jun 2009 |
View original | Bookmarked: 0 time(s)
I got an interesting question via email today that asked the question: How do ASP.NET Application_ Event Handlers get hooked so that they are automatically fired? If youve worked with ASP.NET for any amount of time you probably know about the global.asax file and its backing global class that holds event handlers for several common HttpApplication Event Handlers: public class Global : System.Web.HttpApplication
{
protected void Application_Start(object sender, EventArgs e)
{
}
...