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)
%>