ASP Keys ·½·¨
¶¨ÒåºÍÓ÷¨
Keys ·½·¨·µ»Ø°üº¬ Dictionary ¶ÔÏóÖÐËùÓÐ key µÄÊý×é¡£
Óï·¨£º
DictionaryObject.Keys
ʵÀý
<%
dim d,a,i
set d=Server.CreateObject("Scripting.Dictionary")
d.Add "c","China"
d.Add "i","Italy"
d.Add "s","Sweden"
Response.Write("<p>Key values:</p>")
a=d.Keys
for i=0 to d.Count-1
Response.Write(a(i))
Response.Write("<br />")
next
set d=nothing
%>
Êä³ö£º
Key values: c i s