I was hoping someone could shed some light on why my cookie that I set does not persist when the browser is closed.
The current code is:
Response.Cookies("SURVEY"
("N_count"
= "1"
Response.Cookies("SURVEY"
.Expires = DateAdd("d", Date, 30)
I have also tried:
Response.Cookies("SURVEY"
.Expires = Date + 30
and
Response.Cookies("SURVEY"
.Expires = "January 10, 2003"
Nothing seems to keep the cookie on the users machine.
Any advice would be much appreciated.
The current code is:
Response.Cookies("SURVEY"
Response.Cookies("SURVEY"
I have also tried:
Response.Cookies("SURVEY"
and
Response.Cookies("SURVEY"
Nothing seems to keep the cookie on the users machine.
Any advice would be much appreciated.