Few things are more disappointing to an ASP.NET programmer than this one line of code in a web.config:
<sessionState mode="Off" />
You probably know what I mean if you’ve ever been asked to implement user sessions for a web site that has ASP.NET’s built-in session state disabled. In this post I will offer one simple alternative that allows you to implement user sessions on just such a web site.
Cookies Taste Better In-Memory
The secret to my solution is HTTP cookies. In my experience, programmers are increasingly afraid to create sites that require cookies because ...