Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...

What is the Global.asax used for?

Answer Posted / rajesh

Global.asax is use to implement Application and Session
level Events and those events are:

1. Application_Start()
2. Application_End()
3. Application_Error()
4. Session_Start()
5. Session_End()

1. Application_Start() is executed when the application is
loaded into the webserver ie, when the whole web
application starts.It is global across all the users
visiting the website.Any kind of initialization logic can
be placed in this event.

2.It is used to perform release kind of activities like
releasing resources etc.

3.This event is executed when an error is occured and the
developer hasn`t written appropiate exception handling code.

4.This event is specific for each user`s session , ie this
event executes for each time for different users visiting
the website.Each User has his own session created for him
when he visits the website , a session_id is created for
him and is stored in the browsers cache and the same id is
used to recognise the user when he visits the website next
time.Can place initialization logic when the session starts.

5.Same as Application_End(), used for release kind of
activities, but this event is specific for each user`s
session.

Is This Answer Correct ?    5 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What can we do with asp.net?

923


What is paging in context of Memory?

1067


What is a gridview in asp.net?

966


How do we access view state value of this page in the next page?

959


What is the difference between viewstate and hidden field in asp.net?

993


What is difference between asp.net and asp?

1002


What is role-based security in asp.net?

1001


Define the term Web Garden?

911


Where can I get information on cookies in asp.net?

960


What is the difference between web.config and machine.config in ASP.NET?

1076


Which is better php or asp.net?

908


What is asp.net master page?

934


What is difference between session and cookies in asp net?

995


What is the significance of ASP.NET routing?

1031


How can we add an event handler for a ASP.NET function executed on MouseOver for a certain button.

1082