ASP.NET MVC Session to cookies
08:09 01 Dec 2017

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?

asp.net-mvc