ASP.NET DropDownList SelectedIndex 屬性
ASP.NET DropDownList SelectedIndex 屬性

定義和用法
SelectedIndex 屬性用于獲取或設(shè)置 DropDownList 中被選項(xiàng)目的索引號(hào)。
實(shí)例
下面的實(shí)例輸出了被選項(xiàng)目的文本:
<script runat="Server">
Sub GetName(obj As Object, e As EventArgs)
??lbl.Text = ddList.SelectedItem.Text
End Sub
</script>
<form runat="Server">
Select a name from the list:
<asp:DropDownList id="ddList" runat="Server">
??<asp:ListItem Text="Peter" />
??<asp:ListItem Text="Lois" />
??<asp:ListItem Text="Cleveland" />
??<asp:ListItem Text="Quagmire" />
??<asp:ListItem Text="Joe" />
</asp:DropDownList>
<asp:Button Text="Select"
OnClick="GetName" Runat="Server" />
<br />
Name is:
<asp:Label id="lbl" Runat="Server"/>
</form>
Sub GetName(obj As Object, e As EventArgs)
??lbl.Text = ddList.SelectedItem.Text
End Sub
</script>
<form runat="Server">
Select a name from the list:
<asp:DropDownList id="ddList" runat="Server">
??<asp:ListItem Text="Peter" />
??<asp:ListItem Text="Lois" />
??<asp:ListItem Text="Cleveland" />
??<asp:ListItem Text="Quagmire" />
??<asp:ListItem Text="Joe" />
</asp:DropDownList>
<asp:Button Text="Select"
OnClick="GetName" Runat="Server" />
<br />
Name is:
<asp:Label id="lbl" Runat="Server"/>
</form>
演示實(shí)例 ?

相關(guān)文章
- ASP.NET Web Pages WebSecurity 參考手冊(cè)
- ASP.NET Web Pages WebMail 參考手冊(cè)
- ASP.NET Razor 標(biāo)記
- ASP.NET Razor VB 循環(huán)和數(shù)組
- ASP.NET MVC – 發(fā)布
- ASP.NET ViewState
- ASP.NET Style 控件
- ASP.NET Table 控件
- HTML Button
- ASP.NET HTML 控件Table 2
- ASP.NET HTML 控件 SortedList RadioButtonList 1
- ASP.NET HTML 控件 SortedList DropDownList
- ASP.NET HTML 控件 數(shù)據(jù)庫(kù)鏈接 - 綁定一個(gè) Repeater 控件
- C# 實(shí)例 For Each 循環(huán)
- C# 實(shí)例 Array 數(shù)組
- C# 實(shí)例 If 條件
- htmlanchor
- htmlimage
- ASP.NET Calendar CellPadding 屬性
- ASP.NET Calendar VisibleDate 屬性