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

<完全な辞書オブジェクト参照