Hi,
What is use of Global Application Class (Global.asax) in ASP.NET?
Thanks.
Loading
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Anuja PawarPosted Dec 27, 2011, 6:55 AM
The Global.asax file is an optional file used to declare and handle application and session-level events and objects for an ASP.NET web site running on an IIS Web Server. The file contains ASP.NET program code, and is the .NET counterpart of the Global.asa file used for ASP. The Global.asax file resides in the IIS virtual root of an ASP.NET application.
For more details and example refer this
http://www.dotnetcurry.com/ShowArticle.aspx?ID=126
http://www.mikesdotnetting.com/Article/129/Simple-task-Scheduling-using-Global.asax
Datta KharadPosted Dec 27, 2011, 5:21 AM
Refer this articles:-
http://www.c-sharpcorner.com/uploadfile/37db1d/looking-inside-global-asax-application-file-in-Asp-Net-3-5/
http://www.c-sharpcorner.com/uploadfile/aa04e6/major-events-in-global-asax-file/
Satyapriya NayakPosted Dec 27, 2011, 12:34 AM
Please refer Our recommended articles.
Thanks