Catalin
Posts: 6542
Joined: Wed Jun 13, 2018 7:49 am

Re: Global.asax file

Fri Feb 01, 2019 1:06 pm

Hello and welcome to our forums,

Global.asax is an optional file which is used to handling higher level application events such as Application_Start, Application_End, Session_Start, Session_End etc.

It is also popularly known as ASP.NET Application File. This file resides in the root directory of an ASP.NET-based application. At run time, Global.asax is parsed and compiled into a dynamically generated .NET Framework class derived from the HttpApplication base class.

The Global.asax file is optional. You create it only if you want to handle application or session events.

For more information about this, please have a look on the Microsoft "Global.asax Syntax" article.

Hope this helps.

Regards,
Catalin
Catalin Gheorghe - Advanced Installer Team
Follow us: Twitter - Facebook - YouTube

Return to “Common Problems”