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

返回一個(gè)所有鍵的數(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 value of the keys are:</p>")

a=d.Keys

for i = 0 To d.Count -1

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

next

Response.Write(s)

set d=nothing

%>

 

</body>

</html>

結(jié)果:

The value of the keys are:

n
i

相關(guān)文章