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
What is hidden field in asp.net?
Explain the benefits of viewstate?
how to retrieve property settings from xml .config file.
How does session authentication work?
What is difference Between Authentication and authorization?
What is difference between mvc and asp.net? : Asp.Net MVC
What are the different method of navigation in asp.net?
To add a hyperlink column to the DataGrid which tag is used ?
List down the sequence of methods called during the page load.
How do I debug an asp.net application that was not written with visual studio.net and that does not use code-behind?
What is server side session?
What is custom events?
What is asp net application object?
What is the difference between web.config and machine.config in ASP.NET?
How do I use a proxy server when invoking a web service?