Global.asax in ASP.NET

Define global.asax in ASP.NET.

- The Global.asax is including the Global.asax.cs file.
- You can implement application and session level events using global.asax.
- It is also known as the ASP.NET application file.
- This file is configured itself, so any direct URL request is automatically rejected.
- The external users cannot download or view the written code within it.
Application_Start and Session_Start subroutines - ASP.NET
ASP.NET - Application_Start and Session_Start subroutines - These subroutines set the variables for the Application and Session objects.....
Inline code and code behind
ASP.NET - Inline code and code behind - Inline code written along side the html in a page....
What is MSIL in .NET?
ASP.NET - What is MSIL in .NET? - MSIL is the Microsoft Intermediate Language....
Post your comment