ASP.NET Text 屬性
ASP.NET Text 屬性

定義和用法
Text 屬性表示列表中選定項(xiàng)的值文本。
實(shí)例
下面的實(shí)例獲取 RadioButtonList 控件中的某個 ListItem 的文本:
<script runat="server">
Sub Change(obj As Object, e As EventArgs)
??Response.Write("You selected " & rb1.Text)
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.Text)
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 Application 對象
- ASP TextStream 對象
- ASP ADO
- ASP AdRotator
- ASP Browser Capabilities
- AJAX 數(shù)據(jù)庫
- ASP 快速參考
- ASP AtEndOfLine 屬性
- ASP Column 屬性
- ASP Line 屬性
- ASP SkipLine 方法
- ASP Attributes 屬性
- ASP ParentFolder 屬性
- ASP Size 屬性
- ASP CompareMode 屬性
- ASP Item 屬性
- ASP Keys 方法
- ASP RemoveAll 方法
- ASP Execute 方法
- ASP.NET HtmlTable 控件