最新的Web开发教程
 

ASP Key Property


<完整字典对象参考

Key属性设置为Dictionary对象的现有键值一个新的键值。

句法

DictionaryObject.Key(key)=newkey

参数 描述
key 需要。 将要改变的键的名称
newkey 需要。 关键的新名称

<%
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"))
%>

Output:

The value of key r is: Red

<完整字典对象参考