ASP.NET cookie-based sessions, is there SessionStateModule for it?

deathdude

New Member
I am looking for a way to do fully cookie-based sessions in ASP.NET. I don't intend to store complex objects in them, just string key-value pairs.I am looking for something similar to how the Play! framework handles sessions, it basically encodes all the session data in a cookie and takes care of encrypting/decrypting it on each request.I don't want to have to write my own SessionStateModule for this if I can avoid it, does one exist?Thanks
 
Back
Top