ASP Key 属性
asp key 属性
完整的 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
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 对象参考手册
相关文章
- ASP 使用 CDOSYS 发送电子邮件
- ASP ASPError 对象
- ASP Drive 对象
- ASP AdRotator
- ASP 快速参考
- ASP Write 方法
- ASP Attributes 属性
- ASP Name 属性
- ASP Move 方法
- ASP CreateTextFile 方法
- ASP RemoveAll 方法
- ASP IsClientConnected 属性
- ASP Status 属性
- ASP Contents 集合
- ASP Lock 和 Unlock 方法
- ASP Application_OnStart 和 Application_OnEnd 事件
- ASP CodePage 属性
- ASP Abandon 方法
- ASP GetExtensionName 方法
- ASP OpenTextFile 方法