该排序列表对象结合了ArrayList对象和哈希表对象的特点。
例子
该排序列表对象
该排序列表对象包含键/值对的项目。
一个排序列表对象进行自动排序的字母或数字顺序的项目。
项目添加到与该SortedList中Add()方法。
甲排序列表的尺寸以它的与最终尺寸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>
数据绑定
甲排序列表对象可以自动生成文本和值以下控制:
- ASP:单选按钮列表
- ASP:CheckBoxList的
- ASP:DropDownList的
- ASP:列表框
将数据绑定到RadioButtonList控件,首先创建一个RadioButtonList控件(没有任何的asp:列表项元素)在.aspx页:
<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>
显示范例»