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

<完整字典对象参考