ASP Key 属性

星河私藏家

ASP Key 属性



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


版权声明:本页面内容旨在传播知识,为用户自行发布,若有侵权等问题请及时与本网联系,我们将第一时间处理。E-mail:284563525@qq.com

目录[+]

取消
微信二维码
微信二维码
支付宝二维码