i want to add some stuff to cookie in ASP.net MVC.
what is best way to handle all stuff in a cookie or more cookie.
any good way to handle cookie in asp.net mvc
i want to add some stuff to cookie in ASP.net MVC.
what is best way to handle all stuff in a cookie or more cookie.
any good way to handle cookie in asp.net mvc
Here's an example:
public class HomeController : Controller
{
public ActionResult CreateCookie()
{
var cookie = new HttpCookie("cookie_name", "some value");
Response.AppendCookie(cookie);
return View();
}
public ActionResult ReadCookie()
{
var cookie = Request.Cookies["cookie_name"];
if (cookie != null)
{
string value = cookie.Value;
}
return View();
}
}