IE does not accept cookie, how can I troubleshoot it?

  • Thread starter Thread starter StanB
  • Start date Start date
S

StanB

Hi,

1. ASP.NET application sends a page to the browser containing cookie:

Set-Cookie: TestCookie=ok; expires=Fri, 16-Nov-2007 16:09:57 GMT; path=/


2. IE - Tools - Privacy - Accept All Cookies is check and also
Override automatic cookie handling, Always allow session cookes both
check.

3. Both IE 6 and IE7 simple do not accept the cookie and when the page goes
back to the server, Cookie header is missing.

How can I troubleshoot it?

Thanks,

-Stan
 
StanB said:
Hi,

1. ASP.NET application sends a page to the browser containing cookie:

Set-Cookie: TestCookie=ok; expires=Fri, 16-Nov-2007 16:09:57 GMT; path=/


2. IE - Tools - Privacy - Accept All Cookies is check and also
Override automatic cookie handling, Always allow session cookes both
check.

3. Both IE 6 and IE7 simple do not accept the cookie and when the page goes
back to the server, Cookie header is missing.

How can I troubleshoot it?

Thanks,

-Stan
If you are in the USA, one possibility is the cookie has expired and has
been deleted - based on your email timestamp and the GMT time supplied.

If you want developer tools, your best bet is to install Firefox and
then install the Web Developer add-on extension. Web Developer provides
a cookie view (among many other functions). Firefox has a lot of other
web development tools.

Roger
 
Back
Top