我使用下面的代码添加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'。
有什么问题?
答案 0 :(得分:1)
httpcookie构造函数中的Cookie名称和Request.Cookie对象内部的键应该相同。