69pao国产精品视频-久久精品一区二区二三区-精品国产精品亚洲一本大道-99国产综合一区久久

返回一個(gè)所有項(xiàng)目的數(shù)組

代碼:

<!DOCTYPE html>

<html>

<body>

 

<%

dim d,a,i,s

set d=Server.CreateObject("Scripting.Dictionary")

d.Add "n", "Norway"

d.Add "i", "Italy"

 

Response.Write("<p>The values of the items are:</p>")

a=d.Items

for i = 0 To d.Count -1

    s = s & a(i) & "<br>"

next

Response.Write(s)

 

set d=nothing

%>

 

</body>

</html>

結(jié)果:

The values of the items are:

Norway
Italy

相關(guān)文章