Created
October 9, 2011 23:46
-
-
Save danieleli/1274378 to your computer and use it in GitHub Desktop.
test global.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class Global : System.Web.HttpApplication | |
{ | |
void Application_Start(object sender, EventArgs e) | |
{ | |
// Code that runs on application startup | |
} | |
void Application_End(object sender, EventArgs e) | |
{ | |
// Code that runs on application shutdown | |
} | |
void Application_Error(object sender, EventArgs e) | |
{ | |
// Code that runs when an unhandled error occurs | |
} | |
void Session_Start(object sender, EventArgs e) | |
{ | |
// Code that runs when a new session is started | |
} | |
void Session_End(object sender, EventArgs e) | |
{ | |
// Code that runs when a session ends. | |
// Note: The Session_End event is raised only when the sessionstate mode | |
// is set to InProc in the Web.config file. If session mode is set to StateServer | |
// or SQLServer, the event is not raised. | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment