Answer:
Below are the event handlers in sequence of their execution -
Application_Start - Fired when the first user visits a page of the application or first resource is requested from the server.
Application_End - Fired when there are no more users of the application.
Application_BeginRequest - Fired at the beginning of each request to the server.
Application_EndRequest - Fired at the end of each request to the server.
Session_Start - Fired when any new user visits.
Session_End - Fired when the users stop requesting pages and their session times out.
Asked In: Many Interviews |
Alert Moderator