global.asx.cs
-
What's the difference between Session_Start and Application_Start inside the global.asx.cs file?
Hi there. In a nutshell, the Application_Start event gets fired when the application starts, and the Session_Start event occurs when a new Session is created. In the life of an application, the Application_Start event happens only one time and the Session_Start can be raised multiple times. For more information about this file, you can see Global.asax File[^]
-
Hi there. In a nutshell, the Application_Start event gets fired when the application starts, and the Session_Start event occurs when a new Session is created. In the life of an application, the Application_Start event happens only one time and the Session_Start can be raised multiple times. For more information about this file, you can see Global.asax File[^]