Statistics
The Highest Post







Statistics
Count 94
Avg 21.00
Min 21
Max 21

Details



Peter Agyekum Explain the application event handlers in ASP.NET ? 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.
Related Topics