ASP Add 方法
asp add 方法
完整的 dictionary 对象参考手册add 方法向 dictionary 对象添加一个新的 key/item 对。
注意:如果 key 已经存在,则会出现错误。
语法
dictionaryobject.add(key,item)
参数 | 描述 |
---|---|
key | 必需的。与 item 相关联的 key 值。 |
item | 必需的。与 key 相关联的 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
完整的 dictionary 对象参考手册
相关文章
- 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 方法