Quote:
Originally posted by visualsander
Hi group,
I think(!) I created a cookie, olé. I can write to it and read from it. But where is it saved? I cannot find it anywhere on my PC.
Below is the code I use.
TIA
VS
*********************************** <BR>
Cookie time <BR>
*********************************** <BR>
<%
Response.Cookies("firstname")="Alex"
%>
Cookie created! <BR>
*********************************** <BR>
<%
fname=Request.Cookies("firstname")
response.write("Firstname=" & fname)
%>
Give the cookie an expiry time and you will find it. I think if you dont specify a expirity time then it only exist in the memory(i am not sure though, will have to look up).