黄色电影一区二区,韩国少妇自慰A片免费看,精品人妻少妇一级毛片免费蜜桃AV按摩师 ,超碰 香蕉

返回一個所有項(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)文章