D
Derick Bailey
I have a development website running on Win2K Server, using ASP 3.0. I'm
using IE6 (all updates added).
I have a cookie that is set on a login page, which is an Encrypted password:
Response.Cookies("PWORD")=EncryptedPassword
I then redirect to a page:
Response.Redirect(GotoPage)
and on the page that is redirected, i look at the cookie:
Response.Write(Request.Cookies("PWORD"))
the problem is, when I do the request.cookies, it is NOT encrypted. The only
code that ever sets this cookie is the one line that I showed above, and one
line to set it to "" when the user hits the Logout button.
why is my cookie showing up unencrypted? and how do I fixe this? it seems to
be specific to my machine... but it just started happening last friday - and
i did not update anything, when this started happening. ... i was just
looking at pages on the site.
using IE6 (all updates added).
I have a cookie that is set on a login page, which is an Encrypted password:
Response.Cookies("PWORD")=EncryptedPassword
I then redirect to a page:
Response.Redirect(GotoPage)
and on the page that is redirected, i look at the cookie:
Response.Write(Request.Cookies("PWORD"))
the problem is, when I do the request.cookies, it is NOT encrypted. The only
code that ever sets this cookie is the one line that I showed above, and one
line to set it to "" when the user hits the Logout button.
why is my cookie showing up unencrypted? and how do I fixe this? it seems to
be specific to my machine... but it just started happening last friday - and
i did not update anything, when this started happening. ... i was just
looking at pages on the site.