最新的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

<完整字典對象參考