<html> <body> <% dim d set d=Server.CreateObject("Scripting.Dictionary") d.Add "n", "Norway" d.Add "i", "Italy" Response.Write("The value of the item n is: " & d.item("n")) set d=nothing %> </body> </html>
<% dim d set d=Server.CreateObject("Scripting.Dictionary") d.Add "n", "Norway" d.Add "i", "Italy" Response.Write("The value of the item n is: " & d.item("n")) set d=nothing %>