程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> .NET網頁編程 >> 關於.NET >> ASP.NET入門教程:ArrayList對象

ASP.NET入門教程:ArrayList對象

編輯:關於.NET

ArrayList 對象是包含單一數據值的項目的集合。

實例

例子 1 - ArrayList RadioButtonList

例子 2 - ArrayList DropDownList

創建 ArrayList

ArrayList 對象是包含單一數據值的項目的集合。

通過 Add() 方法向 ArrayList 添加項目。

下面的代碼創建了一個新的 ArrayList 對象,名為 mycountrIEs,並添加了四個項目:

<script runat="server">
Sub Page_Load
if Not Page.IsPostBack then
  dim mycountries=New ArrayList
  mycountries.Add("China")
  mycountries.Add("Sweden")
  mycountries.Add("France")
  mycountrIEs.Add("Italy")
end if
end sub
</script>

默認地,一個 ArrayList 對象包含 16 個條目。可通過 TrimToSize() 方法把 ArrayList 調整為最終尺寸:

<script runat="server">
Sub Page_Load
if Not Page.IsPostBack then
  dim mycountries=New ArrayList
  mycountries.Add("China")
  mycountries.Add("Sweden")
  mycountries.Add("France")
  mycountries.Add("Italy")
  mycountrIEs.TrimToSize()
end if
end sub
</script>

通過 Sort() 方法,ArrayList 也能夠按照字母順序或者數字順序進行排序:

<script runat="server">
Sub Page_Load
if Not Page.IsPostBack then
  dim mycountries=New ArrayList
  mycountries.Add("China")
  mycountries.Add("Sweden")
  mycountries.Add("France")
  mycountries.Add("Italy")
  mycountries.TrimToSize()
  mycountrIEs.Sort()
end if
end sub
</script>

要實現顛倒的排序,請在 Sort() 方法後應用 Reverse() 方法:

<script runat="server">
Sub Page_Load
if Not Page.IsPostBack then
  dim mycountries=New ArrayList
  mycountries.Add("China")
  mycountries.Add("Sweden")
  mycountries.Add("France")
  mycountries.Add("Italy")
  mycountries.TrimToSize()
  mycountries.Sort()
  mycountrIEs.Reverse()
end if
end sub
</script>

把數據綁定到 ArrayList

ArrayList 對象可向下面這些控件自動地生成文本和值:

  • ASP:RadioButtonList
  • ASP:CheckBoxList
  • ASP:DropDownList
  • ASP:Listbox

如需把數據綁定到一個 RadioButtonList 控件,首先請在一個 .aspx 頁面中創建 RadioButtonList 控件(請注意,沒有任何 ASP:ListItem 元素):

本文是網頁教學www.webjx.com收集整理或者原創內容,轉載請注明出處!

<html>
<body>

<form runat="server">
<ASP:RadioButtonList id="rb" runat="server" />
</form>

</body>
</Html>

然後添加構建列表的腳本,並把列表中的值綁定到該 RadioButtonList 控件:

<script runat="server">
Sub Page_Load
if Not Page.IsPostBack then
  dim mycountries=New ArrayList
  mycountries.Add("China")
  mycountries.Add("Sweden")
  mycountries.Add("France")
  mycountries.Add("Italy")
  mycountries.TrimToSize()
  mycountries.Sort()
  rb.DataSource=mycountrIEs
  rb.DataBind()
end if
end sub
</script>

<html>
<body>

<form runat="server">
<ASP:RadioButtonList id="rb" runat="server" />
</form>

</body>
</Html>

RadioButtonList 控件的 DataSource 屬性被設置為該 ArrayList,它定義了這個 RadioButtonList 控件的數據源。RadioButtonList 控件的 DataBind() 方法把 RadioButtonList 控件與數據源綁定在一起。本信息代表文章來源網頁教學webjx.com請大家去www.webjx.com浏覽!

注釋:數據值作為控件的 Text 和 Value 屬性來使用。如需添加不同於 Text 的 Value,既可以使用 Hashtable 對象,也可以使用 SortedList 對象。

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved