How can I make this cookie persistent? (Classic ASP)
- by Isaac Levin
Hello,
I am maintaining a classic asp website that uses cookies throughout. We have had some issues where users are losing these cookies after they close the browser. I have verified in IE and Firefox that the cookie expires when the session does. The issue is that I have a extent the life of the cookie with the following
Response.Cookies("foocookie").Expires = dateadd("d",1,now)
What am I doing wrong? All I want this cookie to do is be persistent. Any help would be great. Thanks