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
Why do we need a web application session?
What is the difference between union and join?
What is redirectpermanent in asp.net?
Explain the difference between asp and asp.net?
What is the purpose of using MVC programming pattern in ASP.NET?
How can you apply a theme to your asp.net application?
Explain authorization levels in .net ?
What are the 3 types of web?
Define authentication and authorization.
What does uri mean?
Which is better asp.net or php?
What is the use of service provider?
What is difference between cookies and cache?
What types of data validation events are commonly seen in the client-side form validation?
Are cookies stored on server or client?