
Client side or server side cookie
The followings are sample codes from msn. After execution,
I'm unable to find cookie "MyCookie" under cookie
directory. where is "MyCookie" stored? Client or Server
side?
<HTML>
<HEAD>
<%
'Creates a cookie with a string value "Hello World!"
Response.Cookies("MyCookie")="Hello World!"
%>
</HEAD>
<BODY>
<A href="/default.aspx?scid=CookieGet.asp">Click to
get the cookie value</A>
</BODY>
</HTML>