วัตถุ Hashtable มีรายการในคีย์ / คู่ค่า
ตัวอย่าง
สร้าง Hashtable
วัตถุ Hashtable มีรายการในคีย์ / คู่ค่า คีย์จะถูกใช้เป็นดัชนีและการค้นหาอย่างรวดเร็วมากสามารถทำค่าโดยการค้นหาผ่านกุญแจ
รายการที่จะเพิ่มเข้ามาใน Hashtable กับ Add() วิธีการ
รหัสต่อไปนี้จะสร้าง Hashtable ชื่อ mycountries และธาตุทั้งสี่ที่มีการเพิ่ม:
<script runat="server">
Sub Page_Load
if Not Page.IsPostBack then
dim mycountries=New Hashtable
mycountries.Add("N","Norway")
mycountries.Add("S","Sweden")
mycountries.Add("F","France")
mycountries.Add("I","Italy")
end if
end sub
</script>
ข้อมูลผูกพัน
วัตถุ Hashtable อาจสร้างข้อความและค่าที่จะควบคุมต่อไปนี้โดยอัตโนมัติ:
- asp: RadioButtonList
- asp: CheckBoxList
- asp: DropDownList
- asp: กล่องรายการ
การผูกข้อมูลเพื่อการควบคุม RadioButtonList แรกสร้างตัวควบคุม RadioButtonList (without any asp:ListItem elements) ในหน้าขอบ:
<html>
<body>
<form runat="server">
<asp:RadioButtonList id="rb" runat="server"
AutoPostBack="True" />
</form>
</body>
</html>
จากนั้นเพิ่มสคริปต์ที่สร้างรายการ:
<script runat="server">
sub Page_Load
if Not Page.IsPostBack then
dim mycountries=New Hashtable
mycountries.Add("N","Norway")
mycountries.Add("S","Sweden")
mycountries.Add("F","France")
mycountries.Add("I","Italy")
rb.DataSource=mycountries
rb.DataValueField="Key"
rb.DataTextField="Value"
rb.DataBind()
end if
end sub
</script>
<html>
<body>
<form runat="server">
<asp:RadioButtonList id="rb" runat="server"
AutoPostBack="True" />
</form>
</body>
</html>
จากนั้นเราก็เพิ่มประจำย่อยจะต้องถูกประหารชีวิตเมื่อผู้ใช้คลิกที่รายการในการควบคุม RadioButtonList เมื่อปุ่มมีการคลิกที่ข้อความจะปรากฏในป้ายกำกับ:
ตัวอย่าง
<script runat="server">
sub Page_Load
if Not Page.IsPostBack then
dim mycountries=New Hashtable
mycountries.Add("N","Norway")
mycountries.Add("S","Sweden")
mycountries.Add("F","France")
mycountries.Add("I","Italy")
rb.DataSource=mycountries
rb.DataValueField="Key"
rb.DataTextField="Value"
rb.DataBind()
end if
end sub
sub displayMessage(s as Object,e As EventArgs)
lbl1.text="Your favorite country is: " & rb.SelectedItem.Text
end sub
</script>
<html>
<body>
<form runat="server">
<asp:RadioButtonList id="rb" runat="server"
AutoPostBack="True" onSelectedIndexChanged="displayMessage" />
<p><asp:label id="lbl1" runat="server" /></p>
</form>
</body>
</html>
แสดงตัวอย่าง» Note: คุณไม่สามารถเลือกการเรียงลำดับของรายการที่เพิ่มให้กับ Hashtable การเรียงลำดับรายการตามลำดับตัวอักษรหรือตัวเลขใช้วัตถุ SortedList