ASP.NET Text Property


ListControl Control Reference Complete ListControl Control Reference

Definition and Usage

The Text property represents the value text of a selected item in a list.


Example

The following example gets the Text from a ListItem in a RadioButtonList control:

<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>

Show example »

ListControl Control Reference Complete ListControl Control Reference

Color Picker

colorpicker