69pao国产精品视频-久久精品一区二区二三区-精品国产精品亚洲一本大道-99国产综合一区久久

ASP.NET SelectedIndex 屬性

ASP.NET SelectedIndex 屬性

ListControl 控件參考手冊(cè) ListControl 控件參考手冊(cè)

定義和用法

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>

ListControl 控件參考手冊(cè) ListControl 控件參考手冊(cè)
相關(guān)文章