ASP.NET SelectedIndex 属性
ASP.NET SelectedIndex 属性
ListControl 控件参考手册定义和用法
SelectedIndex 属性表示列表中选定项的序号索引。
实例
下面的实例获取 RadioButtonList 控件中的某个 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>
相关文章
- ASP 变量
- ASP Cookies
- ASP Application 对象
- ASP File 对象
- 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 控件