AOL not reading cookies

  • Thread starter Thread starter Liz Patton
  • Start date Start date
L

Liz Patton

Hi,

I have AOL users who can't log into my site (forms authentication). I
set a cookie like this:

Dim loginNameCookie As HttpCookie
loginNameCookie = New HttpCookie("LoginName")
loginNameCookie.Values.Add("LoginName", "panel")
loginNameCookie.Expires = DateAdd("n", 20, Now())
Response.AppendCookie(loginNameCookie)

Then I redirect to a page that checks it like so:


if Not IsNothing(Request.Cookies("LoginName")) then


Any ideas why AOL's browsers can't deal with this? No problems in IE
5, IE 5.5, IE 6, or NS 4.7 to NS 6 to NS 7.

Thanks!
 
I have problems with AOL browsers too. Not all of them, just some - I just
get around it by not using cookies....
 
Back
Top