Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
<%@ LANGUAGE="VBSCRIPT" %>
<%
Dim objDict
'Create an instance of the Dictionary object
Set objDict = Server.CreateObject("Scripting.Dictionary")
'Add some key/item pairs to a Dictionary
objDict.Add "key1","item1" 'Add value item1 with key key1
objDict.Add "key2","item2" 'Add value item2 with key key2
objDict.Add "key3","item3" 'Add value item3 with key key3
'retrieve the item value for the "key1" and print it out
myItem = objDict.Item("key1")
Response.Write("The value corresponding to the key1 is " & myItem & "<br />")
%>