开发者

Cookie management 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();
    }
}


I found this one, may be helpful

http://stephenwalther.com/blog/archive/2008/07/08/asp-net-mvc-tip-15-pass-browser-cookies-and-server-variables-as-action-parameters.aspx

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜