欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

ASP Key 屬性

定義和用法

Key 屬性在 Dictionary 對(duì)象中為已有的 key 設(shè)置新值。

語(yǔ)法:

DictionaryObject.Key(key)=newkey
Parameter Description
key 必需的。需修改的 key 的名稱(chēng)。
newkey 必需的。key 的新名稱(chēng)。

實(shí)例

<%
Dim d
Set d=Server.CreateObject("Scripting.Dictionary")
d.Add "re","Red"
d.Add "gr","Green"
d.Add "bl","Blue"
d.Add "pi","Pink"
d.Key("re")="r"
Response.Write("The value of key r is: " & d.Item("r"))
%>

輸出:

The value of key r is: Red