精品熟女碰碰人人a久久,多姿,欧美欧美a v日韩中文字幕,日本福利片秋霞国产午夜,欧美成人禁片在线观看

ASP Key 屬性

asp key 屬性

dictionary 對象參考手冊 完整的 dictionary 對象參考手冊

key 屬性在 dictionary 對象中為已有的 key 設置新值。

語法

dictionaryobject.key(key)=newkey

參數 描述
key 必需的。需修改的 key 的名稱。
newkey 必需的。key 的新名稱。

實例

<%
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

dictionary 對象參考手冊 完整的 dictionary 對象參考手冊
相關文章