2
Reply

What is the importance of Global.asax in ASP.NET?

Rohan  Rathore

Rohan Rathore

11y
3.6k
0
Reply

    It is an optional file that handles events raised by ASP.NET or by HttpModules. Mostly used for application and session start/end events and for global error handling.

    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.