Difference between application and session ?
Answer Posted / ajay gupta
application state is a state where we hav the information
that is global for the application,
where as
session state is a state which is maintained as a
per-client basis.
whenever a user first accesses a page a session id is
generated by asp.net.
that session id is then transmitted between the client and
the server via Http either with the help of client-side
cookies or encoded in a mangled sessions of the urls.
so the next time the users accesses,state associated with
that session id can be viewed or modified.
| Is This Answer Correct ? | 33 Yes | 4 No |
Post New Answer View All Answers
What's the difference between viewstate and sessionstate?
How can you handle unmanaged code exceptions in asp.net?
Is asp.net free?
By default, Web API sends HTTP response with which of the following status code for all uncaught exception?
What is the use of express session?
What is ispostback method in asp.net? Why do we use that?
In Code-Behind class which kind of code (server or client) is found ?
What is a windows service?
How can I create master page in asp net?
What is difference between singleton and single call?
What is scope of an application variable in asp.net?
What are the validation controls available in ASP.NET?
How to display validation messages in one control?
How tooltip is set through code-behind in ASP.NET?
What is full trust in asp.net?