最新的Web開發教程
 

ASP Item Property


<完整字典對象參考

Item屬性設置或返回的項目在Dictionary對象的值。

句法

DictionaryObject.Item(key)[=newitem]

參數 描述
key 需要。 與該項目相關的關鍵
newitem 可選的。 指定與鍵關聯的值

<%
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 pi is: " & d.Item("pi"))
%>

Output:

The value of key pi is: Pink

<完整字典對象參考