ASP.NET Hashtable
asp.net web forms - hashtable 對象
hashtable 對象包含用鍵/值對表示的項目。

嘗試一下 - 實例
創建 hashtable
hashtable 對象包含用鍵/值對表示的項目。鍵被用作索引,通過搜索鍵,可以實現對值的快速搜索。
通過 add() 方法向 hashtable 添加項目。
下面的代碼創建了一個名為 mycountries 的 hashtable 對象,并添加了四個元素:
<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>
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>
數據綁定
hashtable 對象可為下列的控件自動生成文本和值:
- asp:radiobuttonlist
- asp:checkboxlist
- asp:dropdownlist
- asp:listbox
為了綁定數據到 radiobuttonlist 控件,首先要在 .aspx 頁面中創建一個 radiobuttonlist 控件(不帶任何 asp:listitem 元素):
<html>
<body>
<form runat="server">
<asp:radiobuttonlist id="rb" runat="server" autopostback="true" />
</form>
</body>
</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
</script>
<html>
<body>
<form runat="server">
<asp:radiobuttonlist id="rb" runat="server" autopostback="true" />
</form>
</body>
</html>
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 控件中的某個項目時,該子例程會被執行。當某個單選按鈕被點擊時,label 中會出現一行文本:
實例
<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>
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>
注釋:您無法選擇添加到 hashtable 的項目的排序方式。如需對項目進行字母排序或者數字排序,請使用 sortedlist 對象。