我正在尝试保留一个cookie以供将来在应用程序中引用,但似乎无法得到它,这就是我这样做的方式:
Response.Cookies.Add(new HttpCookie(COOKIE_LMNOMBRE) { Domain = "SIG", Value = userName });
当我查看Firefox firebug时,没有cookie!
答案 0 :(得分:2)
您确定域名吗?您是否尝试删除域名?
HttpCookie cookie = new HttpCookie(COOKIE_LMNOMBRE){ Value = userName};
Response.Cookies.Add(cookie );