Category: ASP
Dictionary Object ASP
<% Dim objDic Set objDic=Server.CreateObject("Scripting.Dictionary") objDic.Add "re","Red" objDic.Add "gr","Green" objDic.Add "bl","Blue" objDic.Add "pi","Pink" Response.Write("The value of key gr is: " & objDic.Item("gr")) %>
Tags:
ASP