It is on a different page and I set it to variable.
The code used to be like this (which works)
Page1: Response.Cookies("MyCookie
Page2: MyVar = Request.Cookies("MyCookie"
I am having to add HttpOnly to all the cookies. So the new code should be: Response.AddHeader "Set-Cookie", "Name=MyCookie; path=/; HttpOnly" .
Hmm I don't know the syntax to add the value to this cookie. It is not an issue with reading, it is setting the value?
Main Topics
Browse All Topics





by: b0lsc0ttPosted on 2009-09-16 at 09:42:01ID: 25347532
When are you trying to read the cookie? In other words you have a page with the AddHeader line, where is the line with Request.Cookies?
bol