<%@ Import Namespace="System.Collections.Specialized"%>
<%@ Page Language="VB" %>
<script runat="server">
Sub Page_Load(sender As Object, e As EventArgs)
Dim objDict As StringDictionary
Dim DicEny As DictionaryEntry
Dim i As Integer
objDict = New StringDictionary
objDict.Add("white", "#FFFFFF")
objDict.Add("black", "#000000")
objDict.Add("red", "#FF0000")
objDict.Add("yellow", "#FFFF00")
objDict.Add("green", "#00FF00")
For Each DicEny In objDict
Me.lblText.Text = Me.lblText.Text & "Keys = " & DicEny.Key & ", Values = " & DicEny.Value & "<br>"
Next
End Sub
</script>
<html>
<head>
<title>ThaiCreate.Com ASP.NET - StringDictionary</title>
</head>
<body>
<form id="form1" runat="server">
<asp:Label id="lblText" runat="server"></asp:Label>
</form>
</body>
</html>