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....
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads

Cookies 1
Cookies 1
Cookie Question 1
cookies question 2
Cookies not persisted on client side 2
One client can't login to our site 6
httpCookie is null 4
Weird cookie problem 2

Back
Top