ASP Cookie 集合
❮ Complete Request Object Reference
Cookies 集合用于设置或获取 cookie 值。如果 cookie 不存在,则会创建它,并获取指定的 value。
注意: Response.Cookies 命令必须出现在 <html> 标签之前。
语法
Response.Cookies(name)[(key)|.attribute]=value
variablename=Request.Cookies(name)[(key)|.attribute]
参数 | 描述 |
---|---|
name | 必需。Cookie 的名称 |
value | 对于 Response.Cookies 命令来说是必需的。Cookie 的值 |
attribute | 可选。指定有关 cookie 的信息。可以是以下参数之一:
|
key | 可选。指定分配值的键 |
示例
"Response.Cookies" 命令用于创建 cookie 或设置 cookie 值
<%
Response.Cookies("firstname")="Alex"
%>
在上面的代码中,我们创建了一个名为 "firstname" 的 cookie,并为其分配了值 "Alex"。
也可以为 cookie 分配一些属性,例如设置 cookie 过期的日期
<%
Response.Cookies("firstname")="Alex"
Response.Cookies("firstname").Expires=#May 10,2002#
%>
现在名为 "firstname" 的 cookie 的值为 "Alex",它将在 2002 年 5 月 10 日从用户的计算机中过期。
"Request.Cookies" 命令用于获取 cookie 值。
在下面的示例中,我们检索 cookie "firstname" 的值并在页面上显示它
<%
fname=Request.Cookies("firstname")
response.write("Firstname=" & fname)
%>
输出
Firstname=Alex
Cookie 也可以包含多个值的集合。我们说 cookie 有键。
在下面的示例中,我们将创建一个名为 "user" 的 cookie 集合。 "user" cookie 有包含用户信息的键
<%
Response.Cookies("user")("firstname")="John"
Response.Cookies("user")("lastname")="Smith"
Response.Cookies("user")("country")="Norway"
Response.Cookies("user")("age")="25"
%>
下面的代码读取服务器发送给用户的 cookie。注意,代码使用 HasKeys 属性检查 cookie 是否有键
<html>
<body>
<%
dim x,y
for each x in Request.Cookies
response.write("<p>")
if Request.Cookies(x).HasKeys then
for each y in Request.Cookies(x)
response.write(x & ":" & y & "=" & Request.Cookies(x)(y))
response.write("<br>")
next
else
Response.Write(x & "=" & Request.Cookies(x) & "<br>")
end if
response.write "</p>"
next
%>
</body>
</html>
%>
输出
firstname=Alex
user:firstname=John
user:lastname=Smith
user
country=Norway
user
age=25
❮ Complete Request Object Reference