ASP.NET Text Property


TextBox Control Reference Complete TextBox Control Reference

Definition and Usage

The Text property is used to set or return the text of a TextBox control.

Syntax

<asp:TextBox Text="string" runat="server" />
 
Attribute Description
string A string that specifies the text of the TextBox control


Example

The following example sets the text of a TextBox control:

<form runat="server">
<asp:TextBox id="tb1" runat="server" Text="Name" />
</form>

Show example »

TextBox Control Reference Complete TextBox Control Reference

Color Picker

colorpicker