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

返回一個所有項目的數組

代碼:

<!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>

結果:

The values of the items are:

Norway
Italy

相關文章