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 对象参考手册
相关文章