11 ways to persist user state in an ASP.NET application
The different mechanisms to persist data between user requests in ASP.NET are:
- Application
- Cookies
- Form Post / Hidden Form Field
- QueryString
- Session
- Cache
- Context
- View State
- Control State
- Web.config and Machine.config Files
- Profile
This MSDN Mag article and this post by Tatham Oddie can help you decide which option is more appropriate.
Comments
Post a Comment