ASP.NET SelectedValue 屬性
ASP.NET SelectedValue 屬性

定義和用法
SelectedValue 屬性表示列表中選定項的值。
實例
下面的實例獲取 RadioButtonList 控件中的某個 ListItem 的值:
<script runat="server">
Sub Change(obj As Object, e As EventArgs)
??Response.Write("You selected " & rb1.SelectedValue)
End Sub
</script>
<form runat=server>
<asp:RadioButtonList id="rb1" AutoPostBack="true"
runat="server" OnSelectedIndexChanged="Change">
??<asp:ListItem Value="Item 1" />
??<asp:ListItem Value="Item 2" />
</asp:RadioButtonList>
</form>
Sub Change(obj As Object, e As EventArgs)
??Response.Write("You selected " & rb1.SelectedValue)
End Sub
</script>
<form runat=server>
<asp:RadioButtonList id="rb1" AutoPostBack="true"
runat="server" OnSelectedIndexChanged="Change">
??<asp:ListItem Value="Item 1" />
??<asp:ListItem Value="Item 2" />
</asp:RadioButtonList>
</form>

相關(guān)文章
- ASP Cookies
- ASP Application 對象
- ASP 引用文件
- ASP FileSystem 對象
- ASP Dictionary 對象
- AJAX 簡介
- ASP Close 方法
- ASP Skip 方法
- ASP Drive 屬性
- ASP Delete 方法
- ASP Move 方法
- ASP Key 屬性
- ASP Items 方法
- ASP TotalBytes 屬性
- ASP Application_OnStart 和 Application_OnEnd 事件
- ASP ASPError 對象的屬性
- ASP FolderExists 方法
- ASP OpenTextFile 方法
- ASP.NET HtmlAnchor 控件
- ASP.NET HtmlSelect 控件