I am new to ASP.NET MVC. I have used PHP before and it was easy to create a session and select user records based on the current session variables.
I have looked ev
You can store any kind of data in a session using:
Session["VariableName"]=value;
This variable will last 20 mins or so.