Difference between application and session ?
Answer Posted / ezhil dinesh
Application state is a global storage Mechanism that is accessible from all pages in the web application.
Session State is similar to application state, except that it is scoped to the current browser session. If different users are using your application each user session will have a different session state.
In addition, if a user leaves your application and then returns later, the second user session will have a different session state from the first.
-----------------------------------------------------------
Both application and session state is useful for storing information that needs to be maintained between server roundtrips and between requests for pages.
| Is This Answer Correct ? | 10 Yes | 4 No |
Post New Answer View All Answers
Can more than one person use the same login?
What is the use of worker process in asp.net?
How does a content page differ from a master page?
ASP.NET 2.0's new membership API used for creating and managing user account is exposed through which 2 clause?
What is the extension of master page in asp.net?
Explain State management in asp.net
What is the difference between asp.net mvc and asp.net webforms? : asp.net mvc
What is the difference between session and viewstate in asp.net?
How to handle errors in Web API?
What is the adavantage of using ASP.NET routing?
What can we do with asp.net?
What is OSI layer? Explain different layers.
How do we access view state value of this page in the next page?
What is parse in asp.net?
Explain diff. Betn dataset and recordset?