ASP下Cookie操作的详细讲解(2)


%> 
事实上客户机上的Cookie字典是以字符串的形式存在: 

info=Myname=jeff&Gender=male&Myheight=172 

如果用户没有指定“子键”名而直接引用Cookies变量,将会返回一个包含所有的“子键”名及值的字符串。例如上面这个例子包含三个“子键”:"Myname"、"Gender"和"Myheight",当用户没有指定其“子键”而直接通过Request.Cookies("info")来引用时,则会得到下列字符串: 

info=Myname=jeff&Gender=male&Myheight=172 

如果要把Cookie中读取的所有数据,可以用下面的代码得到: 

<%For each cookie in Request.Cookies 
if Not cookie.HasKeys then 
Response.write cookie & "=" & Request.Cookies(cookie) 
Else 
for each key in Request.Cookies(cookie) 
Response.write cookie&"("&key&")"&"="& Request.Cookies(cookie)(key) 
next 
end if 
next 
%> 

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:http://www.heiqu.com/2790.html