ASP.NET MVC Session to cookies
Currently I am using Sessions to controller my application. I will use cookies now, but my questions is on CRUD I use
var user_code = Convert.ToInt32(HttpContext.Current.Session["userId"]);
to identify my user and persist on my DB, with cookies how to do it?