Differences between session state and Application state?
Answer Posted / vino
Session state and Application state both are support the
same type of objects and maintain information on the server.
Session state:
- The session object is used to maintain the session of each
user. A user gets a session id when he enters in to an
application. This Id will delete when he leave from that
application. If he enters again he will get a different
session Id.
- Session allows information to be stored in one page and
access in another page and support any type of object.
Application state:
- But the application object, the Id is maintained for whole
application.
- Application state allows storing global objects that can
be accessed by any client.
| Is This Answer Correct ? | 17 Yes | 2 No |
Post New Answer View All Answers
How can I create master page in asp net?
How do active server pages work?
What is cas?
How is it possible for .NET to support many languages?
How to find last error which occurred in Asp.net ?
What is the difference between client-side and server-side validations in ASP.NET?
What are httphandlers and httpmodules and difference between them?
If you are using components in your application, how can you handle exceptions raised in a component?
What is server side session management?
Which type if caching will be used if we want to cache the portion of a page instead of whole page?
What is latest version of asp.net mvc? : Asp.Net MVC
Explain asp.net mvc request life cycle? : asp.net mvc
What is the Intermittent crashing of application in production?
What are the various session state management options provided by asp.net?
Define web services in asp.net.