Answer Posted / dilshad
The Global.asax file (also known as the ASP.NET application
file) is an optional file that is located in the
application's root directory and is the ASP.NET counterpart
of the Global.asa of ASP. This file exposes the application
and session level events in ASP.NET and provides a gateway
to all the application and the session level events in
ASP.NET. This file can be used to implement the important
application and session level events such as
Application_Start, Application_End, Session_Start,
Session_End, etc. This article provides an overview of the
Global.asax file, the events stored in this file and how we
can perform application wide tasks with the help of this
file.
| Is This Answer Correct ? | 3 Yes | 0 No |
Post New Answer View All Answers
What is session state server?
What is a web pool?
Hi this is the coding for adding data in to an xml table
i want the coding for update and delete
Try
Dim emp_xml_doc As New XmlDocument
If
System.IO.File.Exists(Server.MapPath("emp.xml")) Then
emp_xml_doc.Load(Server.MapPath("emp.xml"))
Dim myrow_element As XmlElement
myrow_element =
emp_xml_doc.CreateElement("EmpDetails")
Dim str As String
str = "
Who is using asp.net?
How to manage different kinds of sessions in ASP.NET?
What is the main function of url routing system in asp.net mvc? : asp.net mvc
How will you maintain versioning in asp.net 2.0?
Define static constructor?
What is the difference between client-side and server-side validations in webpages?
Explain the difference between response.redirect vs server.transfer
To get the values in two different controls to match which control you use it?
Explain what is clr?
What is the difference between ASP Session State and ASP.Net Session State?
Which type if caching will be used if we want to cache the portion of a page instead of whole page?
Is asp.net web forms dead?