哈希表對象包含鍵/值對的項目。
例子
創建一個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:你不能選擇添加到哈希表中項目的排序順序。 以字母或數字順序對項目進行排序,請使用排序列表對象。