最新的Web開發教程
 

ASP添加方法


<完整字典對象參考

添加方法增加了一個新的鍵/項目對Dictionary對象。

句法

DictionaryObject.Add(key,item)

參數 描述
key 需要。 與該項目相關的鍵值
item 需要。 與該鍵關聯的項目值

<%
Dim d
Set d=Server.CreateObject("Scripting.Dictionary")
d.Add "re","Red"
d.Add "gr","Green"
d.Add "bl","Blue"
d.Add "pi","Pink"
Response.Write("The value of key gr is: " & d.Item("gr"))
%>

Output:

The value of key gr is: Green

<完整字典對象參考