ASP.NET offers a number of places to store state, both on the client and server. However, sometimes it's difficult to decide where you should put things and how to make that decision.
You choices for state management include:
- Application - Stored on the server and shared for all users. Does not expire.
- Cache - Stored on the server and shared for all users. Can expire.
- Session - Stored on the server. Unique for each user. Can expire.
- ViewState - Stored in a hidden page field (by default). Does not expire.
- Cookies - Stored at the client. Can expire.
Whitepapers/Blogs
Videos
Enjoy! Be sure to explore the sub-topics.
Revision number 3, Sunday, February 24, 2008 9:18:29 PM by
This is not the most up to date version of this article. The most recent version can be found here.