最新的Web開發教程
 

ASP.NET Web窗體 - 的排序列表對象


該排序列表對象結合了ArrayList對象和哈希表對象的特點。


例子

例子

排序列表單選按鈕列表1

排序列表的DropDownList


該排序列表對象

該排序列表對象包含鍵/值對的項目。

一個排序列表對象進行自動排序的字母或數字順序的項目。

項目添加到與該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>
顯示範例»