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

How useful was this post?

Click on a star to rate it!

Average rating 0 / 5. Vote count: 0

No votes so far! Be the first to rate this post.