ASP.NET Rows Property
Definition and Usage
The Text property is used to set or return the text of the TextBox control.
Syntax
<asp:TextBox Text="string" runat="server" />
Property | Description |
---|---|
string | String value, specifies the text of the TextBox control. |
Example
The following example sets the text of the TextBox control:
<form runat="server"> <asp:TextBox id="tb1" runat="server" Text="Name" /> </form>
Example
- Set Text for TextBox Control