在asp.net mvc中从Cookie中获取错误的值

时间:2015-03-10 20:04:05

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

我使用下面的代码添加Cooki:

 HttpCookie cookie = new HttpCookie("HozhanSecurityCode");
        cookie.Value = "1234";

        Response.Cookies.Add(cookie);

要让Cookie使用此代码:

            var httpCookie = Request.Cookies["SecurityCode"];
        string SecurityInput = httpCookie.Value.ToString();

但我得到'1453'而不是'1234'。

有什么问题?

1 个答案:

答案 0 :(得分:1)

httpcookie构造函数中的Cookie名称和Request.Cookie对象内部的键应该相同。