精品熟女碰碰人人a久久,多姿,欧美欧美a v日韩中文字幕,日本福利片秋霞国产午夜,欧美成人禁片在线观看

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