最新的Web开发教程
 

ASP.NET Web窗体 - 哈希表对象


哈希表对象包含键/值对的项目。


例子

例子

Hashtable的单选按钮列表1

哈希表的DropDownList


创建一个Hashtable

哈希表对象包含键/值对的项目。 该键用作索引,并且非常快速搜索可以值通过它们的键搜索进行。

项目被添加到哈希表用Add()方法。

下面的代码创建一个Hashtable名为mycountries并添加四个要素:

<script runat="server">
Sub Page_Load
if Not Page.IsPostBack then
  dim mycountries=New Hashtable
  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控件(without any asp:ListItem elements)在.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 Hashtable
  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 Hashtable
  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>
显示范例»

Note:你不能选择添加到哈希表中项目的排序顺序。 以字母或数字顺序对项目进行排序,请使用排序列表对象。