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

定義和用法
SelectedIndex 屬性表示列表中選定項(xiàng)的序號(hào)索引。
實(shí)例
下面的實(shí)例獲取 RadioButtonList 控件中的某個(gè) ListItem 的索引:
<script runat="server">
Sub Change(obj As Object, e As EventArgs)
??Response.Write("Selected index: " & rb1.SelectedIndex)
End Sub
</script>
<form runat=server>
<asp:RadioButtonList id="rb1" AutoPostBack="true"
runat="server" OnSelectedIndexChanged="Change">
??<asp:ListItem Text="Item 1" />
??<asp:ListItem Text="Item 2" />
</asp:RadioButtonList>
</form>
Sub Change(obj As Object, e As EventArgs)
??Response.Write("Selected index: " & rb1.SelectedIndex)
End Sub
</script>
<form runat=server>
<asp:RadioButtonList id="rb1" AutoPostBack="true"
runat="server" OnSelectedIndexChanged="Change">
??<asp:ListItem Text="Item 1" />
??<asp:ListItem Text="Item 2" />
</asp:RadioButtonList>
</form>

相關(guān)文章
- ASP 變量
- ASP Cookies
- ASP Application 對(duì)象
- ASP File 對(duì)象
- ASP DateLastModified 屬性
- ASP ShortName 屬性
- ASP Delete 方法
- ASP SubFolders 集合
- ASP IsRootFolder 屬性
- ASP Add 方法
- ASP Remove 方法
- ASP Charset 屬性
- ASP ContentType 屬性
- ASP TotalBytes 屬性
- ASP Timeout 屬性
- ASP GetFile 方法
- ASP GetTempName 方法
- ASP.NET HtmlButton 控件
- ASP.NET HtmlSelect 控件
- ASP.NET HtmlTableCell 控件