ASP Cookies 集合

2018-09-09 05:26 更新

ASP Cookies 集合


Request 對(duì)象參考手冊(cè) 完整的 Request 對(duì)象參考手冊(cè)

Cookies 集合用于設(shè)置或取得 cookie 的值。如果 cookie 不存在,就創(chuàng)建它,并賦予它規(guī)定的值。

注意:Response.Cookies 命令必須位于 <html> 標(biāo)簽之前。

語(yǔ)法

Response.Cookies(name)[(key)|.attribute]=value

variablename=Request.Cookies(name)[(key)|.attribute]

參數(shù) 描述
name 必需。cookie 的名稱。
value 必需(對(duì)于 Response.Cookies 命令)。cookie 的值。
attribute 可選。規(guī)定有關(guān) cookie 的信息??梢允窍旅娴膮?shù)之一:
  • Domain -?只寫。cookie 僅送往到達(dá)該域的請(qǐng)求。
  • Expires - 只寫。cookie 的失效日期。如果沒(méi)有規(guī)定日期,cookie 會(huì)在 session 結(jié)束時(shí)失效。
  • HasKeys - 只讀。規(guī)定 cookie 是否擁有 key(這是唯一一個(gè)可與 Request.Cookies 命令使用的屬性)。
  • Path - 只寫。如果設(shè)置,cookie 僅送往到達(dá)此路徑的請(qǐng)求。如果沒(méi)有設(shè)置,則使用應(yīng)用程序的路徑。
  • Secure - 只寫。指示 cookie 是否安全。
key 可選。規(guī)定在何處賦值的 key。


實(shí)例

"Response.Cookies" 命令用于創(chuàng)建 cookie 或者設(shè)置 cookie 的值:

<%
Response.Cookies("firstname")="Alex"
%>

在上面的代碼中,我們創(chuàng)建了一個(gè)名為 "firstname" 的 cookie,并為它賦值 "Alex"。

也可以為 cookie 設(shè)置屬性,比如設(shè)置 cookie 的失效時(shí)間:

<%
Response.Cookies("firstname")="Alex"?
Response.Cookies("firstname").Expires=#May 10,2002#
%>

現(xiàn)在,名為 "firstname" 的 cookie 的值是 "Alex",同時(shí)它在用戶電腦中的失效日期是 2002 年 5 月 10 日。

"Request.Cookies" 命令用于取回 cookie 的值。

在下面的實(shí)例中,我們?nèi)』亓?cookie "firstname" 的值,并把它顯示到頁(yè)面上:

<%
fname=Request.Cookies("firstname")
response.write("Firstname=" & fname)
%>

輸出:
Firstname=Alex

一個(gè) cookie 可以包含一個(gè)多值的集合。我們稱之為 cookie 擁有 key 。

在下面的實(shí)例中,我們要?jiǎng)?chuàng)建一個(gè)名為 "user" 的 cookie 集合。"user" cookie 擁有包含有關(guān)用戶信息的 key :

<%
Response.Cookies("user")("firstname")="John"
Response.Cookies("user")("lastname")="Smith"
Response.Cookies("user")("country")="Norway"
Response.Cookies("user")("age")="25"
%>

下面的代碼可讀出所有服務(wù)器已向用戶發(fā)送的 cookie 。請(qǐng)注意,我們使用了 HasKeys 屬性來(lái)判斷 cookie 是否擁有 key :

<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



Request 對(duì)象參考手冊(cè) 完整的 Request 對(duì)象參考手冊(cè)
以上內(nèi)容是否對(duì)您有幫助:
在線筆記
App下載
App下載

掃描二維碼

下載編程獅App

公眾號(hào)
微信公眾號(hào)

編程獅公眾號(hào)