vote up 0 vote down star
1

I have the following code that sets a cookie:

  string locale = ((DropDownList)this.LoginUser.FindControl("locale")).SelectedValue;
  HttpCookie cookie = new HttpCookie("localization",locale);
  cookie.Expires= DateTime.Now.AddYears(1);
  Response.Cookies.Set(cookie);

However, when I try to read the cookie, the Value is Null. The cookie exists. I never get past the following if check:

         if (Request.Cookies["localization"] != null && !string.IsNullOrEmpty(Request.Cookies["localization"].Value))

Help?

flag

75% accept rate
Use LiveHttpHeaders to see whether the cookie is being returned to the browser. addons.mozilla.org/en-US/firefox/… – Jeremy Stein May 27 at 20:19

6 Answers

vote up 3 vote down

The check is done after a post back? If so you should read the cookie from the Request collection instead.

The cookies are persisted to the browser by adding them to Response.Cookies and are read back from Request.Cookies.

The cookies added to Response can be read only if the page is on the same request.

link|flag
vote up 0 vote down

I have tried correcting the code to use Request.Cookies after post back (as shown above), but the problem is the same.

link|flag
The browser on the client allows such persistant cookies? Could it be that the client has a more restrictive than usuall policy on cookies? Are you trying to read the cookie in post back to this same ASP.NET page? – AnthonyWJones Oct 16 '08 at 9:43
vote up 0 vote down

if you're compiling in debug mode, turn on tracing for the pages in question and make sure the cookie is in the request collection. Set trace in the @page directive in the aspx file.

link|flag
vote up 0 vote down

Try this snippet -

string locale = ((DropDownList)this.LoginUser.FindControl("locale"))
                                                    .SelectedValue;  
HttpCookie myCookie = new HttpCookie("localization");
Response.Cookies.Add(myCookie);
myCookie.Values.Add("locale", locale);
Response.Cookies["localization"].Expires = DateTime.Now.AddYears(1);

& to read it -

if (Request.Cookies["localization"] != null)
{
   HttpCookie cookie = Request.Cookies["localization"];
   string locale = cookie.Values["locale"].ToString();
}
link|flag
vote up -1 vote down

Have you tired "Request" collection instead of "Response" collection?

if (Request.Cookies["localization"] != null && !string.IsNullOrEmpty(Request.Cookies["localization"].Value))
link|flag
vote up -1 vote down

use Response.Cookies.Add(cookie); instead of Response.Cookies.Set(cookie);

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.