วัตถุ SortedList รวมคุณสมบัติของทั้งวัตถุ ArrayList และวัตถุ Hashtable
ตัวอย่าง
วัตถุ SortedList
วัตถุ SortedList มีรายการในคีย์ / คู่ค่า
วัตถุ SortedList โดยอัตโนมัติเรียงลำดับรายการในลำดับตามตัวอักษรหรือตัวเลข
รายการที่จะเพิ่มให้กับ SortedList กับ Add() วิธีการ
SortedList สามารถปรับขนาดให้มีขนาดเป็นครั้งสุดท้ายกับ TrimToSize() วิธีการ
รหัสต่อไปนี้จะสร้าง SortedList ชื่อ mycountries และธาตุทั้งสี่ที่มีการเพิ่ม:
<script runat="server">
sub Page_Load
if Not Page.IsPostBack then
dim mycountries=New SortedList
mycountries.Add("N","Norway")
mycountries.Add("S","Sweden")
mycountries.Add("F","France")
mycountries.Add("I","Italy")
end if
end sub
</script>
ข้อมูลผูกพัน
วัตถุ SortedList อาจสร้างข้อความและค่าที่จะควบคุมต่อไปนี้โดยอัตโนมัติ:
- asp: RadioButtonList
- asp: CheckBoxList
- asp: DropDownList
- asp: กล่องรายการ
การผูกข้อมูลเพื่อการควบคุม RadioButtonList แรกสร้างตัวควบคุม RadioButtonList (ไม่มีงูเห่าใดองค์ประกอบ ListItem) ในหน้าขอบ:
<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 SortedList
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 SortedList
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>
แสดงตัวอย่าง»