ASP Add 方法
asp add 方法

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

相關文章
- ASP 程序
- ASP Session 對象
- ASP Global.asa
- ASP ASPError 對象
- ASP AdRotator
- ASP Read 方法
- ASP DateCreated 屬性
- ASP Path 屬性
- ASP Expires 屬性
- ASP Pics 屬性
- ASP End 方法
- ASP QueryString 集合
- ASP Contents.RemoveAll 方法
- ASP Application_OnStart 和 Application_OnEnd 事件
- ASP GetLastError 方法
- ASP Drives 屬性
- ASP BuildPath 方法
- ASP CreateFolder 方法
- ASP GetDriveName 方法
- ASP GetFolder 方法