Ask a Question related to ASP.NET General, Design and Development.
-
memememe #1
Re: aol cookies
just a little more info:
I set the cookie on AOL with the following value:
hashCookie.Value =
Server.UrlEncode(System.Text.Encoding.UTF8.GetStri ng(hash));
and it doesnt work, so then I do
hashCookie.Value = "101";
and it works just fine.
I am using an MD5 hash.
memememe Guest
-
Cookies in FMS
In my application Flash Media Server 2 makes HTTP requests to retrieve configuration data. Page that is requestet sets some cookies. I was very... -
Help with cookies
I'm having trouble accessing my cookies after they're set. If I do a response.write on the cookie value immediately after it's set in code, it... -
php cookies
Is it possible to set php cookies to delete after a period of user inactivity & if so how? -
PHP and cookies
ok I have a question maybe this might help if you have $_COOKIE that is a session cookie in path '/' you also have a cookie $_COOKIE that is a... -
cookies under php 4.06
okay, i know this is stupid, and i'm gonna kick myself when someone points out the obvious... i've just put a site online, and found the server's... -
Liz Patton #2
Re: aol cookies
I have the same problem -- I'm setting cookies like this. I have no
solution, just a pile of annoyed AOL users.
Dim loginNameCookie As HttpCookie
loginNameCookie = New HttpCookie("LoginName")
loginNameCookie.Values.Add("LoginName", "panel")
loginNameCookie.Expires = DateAdd("n", 20, Now())
Response.AppendCookie(loginNameCookie)
"memememe" <[rem]casolorz[rem]@hot[rem]mail.com> wrote in message news:<BliTa.88749$o86.33436@news1.central.cox.net> ...> just a little more info:
> I set the cookie on AOL with the following value:
> hashCookie.Value =
> Server.UrlEncode(System.Text.Encoding.UTF8.GetStri ng(hash));
>
> and it doesnt work, so then I do
> hashCookie.Value = "101";
> and it works just fine.
> I am using an MD5 hash.Liz Patton Guest



Reply With Quote

