Classic ASP
ASP의 컬렉션(Dictionary, Map, 연관배열)
풍풍
2014. 3. 12. 10:20
set colors = CreateObject("Scripting.Dictionary")
colors.add "red","빨강"
colors.add "green","녹색"
for each key in colors
response.write "<br>" & key & "-" & colors(key)
next
출처: http://fendee.egloos.com/6981215