06-26-04 05:44 PM
On Thu, 24 Jun 2004 20:48:51 GMT, ou812@ou812.com wrote:
>On Thu, 24 Jun 2004 16:34:50 -0400, "Aaron [SQL Server MVP]"
><ten.xoc@dnartreb.noraa> wrote:
>
>Nope. The script runs on a commercial host in Canada, not on my
>intranet. All I wanted to do was "test" for cookies and I found that
>this would just "take" the cookie regardless of the browser settings.
>
>I guess it's taking the cookie because it IS displaying a string
>value, although the privacy report (via the icon at the bottom of the
>page) states it "blocked" cookies on pages.
Maybe the browser just blocks permanent cookies which are stored
on disk after the session's over? ASP session cookies are only
temporary and are destroyed when the session ends. To set a
permanent cookie with ASP give the cookie an expiry date.
Compare how it behaves with both types: permanent and sessional.
A browser that blocked all cookies wouldn't work with ASP.
[ Post a follow-up to this message ]
|