在MVC 3中创建Cookie

时间:2012-05-14 09:26:22

标签: asp.net asp.net-mvc asp.net-mvc-3

如何逐步创建cookie

在用户点击“记住我”时存储用户登录ID和密码?选项

我计划在一段时间后杀死这个cookie

1 个答案:

答案 0 :(得分:14)

Cookie的创建方式与普通旧ASP.NET相同,只需访问Response

        public ActionResult Login(string username, string password, bool rememberMe)
        {
            // validate username/password

            if (rememberMe)
            {
               HttpCookie cookie = new HttpCookie("RememberUsername", username);
               Response.Cookies.Add(cookie);
            }

            return View();

        }

但是,如果您使用的是Forms Auth,则可以使FormsAuth票证Cookie保持不变:

        public ActionResult Login(string username, string password, bool rememberMe)
        {
            // validate username/password

            FormsAuthentication.SetAuthCookie(username, rememberMe);

            return View();

        }

您可以阅读以下Cookie:

public ActionResult Index()
{
    var cookie = Request.Cookies["RememberUsername"];

    var username = cookie == null ? string.Empty : cookie.Value; // if the cookie is not present, 'cookie' will be null. I set the 'username' variable to an empty string if its missing; otherwise i use the cookie value

    // do what you wish with the cookie value

    return View();
}

如果 使用表单身份验证并且用户已登录,则可以访问其用户名,如下所示:

public ActionResult Index()
{


    var username = User.Identity.IsAuthenticated ? User.Identity.Name : string.Empty;

    // do what you wish with user name

    return View();
}

可以解密和读取故障单的内容。如果需要,您甚至可以在故障单中存储少量自定义数据。 See this article for more info.