|
Home > Archive > IIS ASP > December 2004 > cookies
You are viewing an archived Text-only version of the thread.
To view this thread in it's original format and/or if you want to reply to
this thread please [click here]
|
|
| Ted Bogucki 2004-12-26, 5:48 pm |
| using asp.net
I can write out cookies using response.cookies and read cooies with
request.cookies
If I enable a firewall like zonealarm then the cookies wiill write out but
the asp page will not read the cookies. This is if block third part
cookies is enabled. If I allow third party cookies the it will work.
If I display the cookie collection it will show a count of zero. I can
edit the cookie on the disk and see the data.
other web sites write and read info to my computer with cookies and zone
alarm is set to block them. why does request.cookies fail to get the
information back
| |
| Bob Barrows [MVP] 2004-12-26, 5:48 pm |
| Ted Bogucki wrote:
> using asp.net
>
There was no way for you to know it, but this is a classic asp newsgroup.
While you may be lucky enough to find a dotnet-savvy person here who can
answer your question, you can eliminate the luck factor by posting your
question to a group where those dotnet-savvy people hang out. I suggest
microsoft.public.dotnet.framework.aspnet.
--
Microsoft MVP - ASP/ASP.NET
Please reply to the newsgroup. This email account is my spam trap so I
don't check it very often. If you must reply off-line, then remove the
"NO SPAM"
| |
| Sylvain Lafontaine 2004-12-27, 2:47 am |
| Some setting for the path of a cookie can confuse the browser and make it
think that a first-party cookie is (falsely) a third-party cookie; for
exemple mixing www.mysite.com with mysite.com (without the www part) or
mixing lower and upper case for a repertory, like www.mysite.com/start and
www.mysite.com/Start (this is because some operating systems, like
UNIX/Linux, are case sensitive for the name of repertories. This will have
an effect even on case insensitive OS, like Windows; because the browser
doesn't see the OS but only the HTTP protocol.
You should give us an exact exemple of your code.
S. L.
"Ted Bogucki" <ted185@comcast.net> wrote in message
news:uANC1d26EHA.3504@TK2MSFTNGP12.phx.gbl...
> using asp.net
>
> I can write out cookies using response.cookies and read cooies with
> request.cookies
>
> If I enable a firewall like zonealarm then the cookies wiill write out but
> the asp page will not read the cookies. This is if block third part
> cookies is enabled. If I allow third party cookies the it will work.
>
> If I display the cookie collection it will show a count of zero. I can
> edit the cookie on the disk and see the data.
>
> other web sites write and read info to my computer with cookies and zone
> alarm is set to block them. why does request.cookies fail to get the
> information back
>
>
|
|
|
|
|