ASP.NET ArrayList
asp.net web forms - arraylist 對象
arraylist 對象是包含單個數據值的項目的集合。

嘗試一下 - 實例
創建 arraylist
arraylist 對象是包含單個數據值的項目的集合。
通過 add() 方法向 arraylist 添加項目。
下面的代碼創建了一個名為 mycountries 的 arraylist 對象,并添加了四個項目:
<script runat="server">
sub page_load
if not page.ispostback then
dim mycountries=new arraylist
mycountries.add("norway")
mycountries.add("sweden")
mycountries.add("france")
mycountries.add("italy")
end if
end sub
</script>
sub page_load
if not page.ispostback then
dim mycountries=new arraylist
mycountries.add("norway")
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("norway")
mycountries.add("sweden")
mycountries.add("france")
mycountries.add("italy")
mycountries.trimtosize()
end if
end sub
</script>
sub page_load
if not page.ispostback then
dim mycountries=new arraylist
mycountries.add("norway")
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("norway")
mycountries.add("sweden")
mycountries.add("france")
mycountries.add("italy")
mycountries.trimtosize()
mycountries.sort()
end if
end sub
</script>
sub page_load
if not page.ispostback then
dim mycountries=new arraylist
mycountries.add("norway")
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("norway")
mycountries.add("sweden")
mycountries.add("france")
mycountries.add("italy")
mycountries.trimtosize()
mycountries.sort()
mycountries.reverse()
end if
end sub
</script>
sub page_load
if not page.ispostback then
dim mycountries=new arraylist
mycountries.add("norway")
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 元素):
<html>
<body>
<form runat="server">
<asp:radiobuttonlist id="rb" runat="server" />
</form>
</body>
</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("norway")
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>
sub page_load
if not page.ispostback then
dim mycountries=new arraylist
mycountries.add("norway")
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 控件與數據源綁定在一起。
注釋:數據值作為控件的 text 和 value 屬性來使用。如需添加不同于 text 的 value,請使用 hashtable 對象或者 sortedlist 對象。