<%@ Import Namespace="System.Collections.Specialized"%> <%@ Page Language="C#" Debug="true" %> <script runat="server"> void Page_Load(object sender, EventArgs e) { StringDictionary objDict; int i; objDict = new StringDictionary(); objDict.Add("white", "#FFFFFF"); objDict.Add("black", "#000000"); objDict.Add("red", "#FF0000"); objDict.Add("yellow", "#FFFF00"); objDict.Add("green", "#00FF00"); foreach(String lsItem in objDict.Keys) { this.lblText1.Text = this.lblText1.Text + "Key = " + lsItem + ", Value = " + objDict[lsItem] + "<br>"; } this.lblText2.Text = "red = " + objDict["red"]; } </script> <html> <head> <title>ThaiCreate.Com ASP.NET - StringDictionary</title> </head> <body> <form id="form1" runat="server"> <asp:Label id="lblText1" runat="server"></asp:Label> <br /><br /><br /> <asp:Label id="lblText2" runat="server"></asp:Label> </form> </body> </html>
ช่วยกันสนับสนุนรักษาเว็บไซต์ความรู้แห่งนี้ไว้ด้วยการสนับสนุน Source Code 2.0 ของทีมงานไทยครีเอท