ASP Item 屬性
asp item 屬性

item 屬性設(shè)置或返回 dictionary 對象中某個(gè)項(xiàng)目的值。
語法
dictionaryobject.item(key)[=newitem]
參數(shù) | 描述 |
---|---|
key | 必需的。與 item 相關(guān)聯(lián)的 key。 |
newitem | 可選的。規(guī)定與 key 相關(guān)聯(lián)的值。 |
實(shí)例
<%
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"))
%>
輸出:
the value of key pi is: pink
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"))
%>
輸出:
the value of key pi is: pink

相關(guān)文章
- ASP 表單
- ASP Application 對象
- ASP 引用文件
- ASP File 對象
- ASP AdRotator
- ASP Attributes 屬性
- ASP Path 屬性
- ASP ShortName 屬性
- ASP ShortPath 屬性
- ASP Copy 方法
- ASP Move 方法
- ASP Remove 方法
- ASP Buffer 屬性
- ASP Charset 屬性
- ASP Flush 方法
- ASP Application_OnStart 和 Application_OnEnd 事件
- ASP CreateObject 方法
- ASP GetLastError 方法
- ASP MoveFolder 方法
- ASP OpenTextFile 方法