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 is hidden field in asp.net?

1180


Explain the benefits of viewstate?

1080


how to retrieve property settings from xml .config file.

1059


How does session authentication work?

980


What is difference Between Authentication and authorization?

1211


What is difference between mvc and asp.net? : Asp.Net MVC

1283


What are the different method of navigation in asp.net?

1077


To add a hyperlink column to the DataGrid which tag is used ?

1144


List down the sequence of methods called during the page load.

980


How do I debug an asp.net application that was not written with visual studio.net and that does not use code-behind?

1059


What is server side session?

1071


What is custom events?

1123


What is asp net application object?

1063


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

1208


How do I use a proxy server when invoking a web service?

1051