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 对象。