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

ASP Add 方法

asp add 方法

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

add 方法向 dictionary 對象添加一個新的 key/item 對。

注意:如果 key 已經(jīng)存在,則會出現(xiàn)錯誤。

語法

dictionaryobject.add(key,item)

參數(shù) 描述
key 必需的。與 item 相關聯(lián)的 key 值。
item 必需的。與 key 相關聯(lián)的 item 值。

實例

<%
dim d
set d=server.createobject("scripting.dictionary")
d.add "re","red"
d.add "gr","green"
d.add "bl","blue"
d.add "pi","pink"
response.write("the value of key gr is: " & d.item("gr"))
%>

輸出:

the value of key gr is: green

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