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

定義和用法
SelectedIndex 屬性用于獲取或設置 DropDownList 中被選項目的索引號。
實例
下面的實例輸出了被選項目的文本:
<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>
演示實例 ?

相關文章
- ASP.NET Web Pages WebSecurity 參考手冊
- ASP.NET Web Pages WebMail 參考手冊
- ASP.NET Razor 標記
- ASP.NET Razor VB 循環(huán)和數組
- 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 控件 數據庫鏈接 - 綁定一個 Repeater 控件
- C# 實例 For Each 循環(huán)
- C# 實例 Array 數組
- C# 實例 If 條件
- htmlanchor
- htmlimage
- ASP.NET Calendar CellPadding 屬性
- ASP.NET Calendar VisibleDate 屬性