Easy Tutorial
❮ Prop Webcontrol Textbox Autocompletetype Aspnet Viewstate ❯

ASP.NET HtmlTextArea Control



Definition and Usage

The HtmlTextArea control is used to control the <textarea> element. In HTML, the <textarea> element is used to create a text area.


Properties

Property Description
Attributes Returns all attribute names and values of the element.
Cols The number of columns in the text area.
Disabled A boolean value indicating whether the control is disabled. Default is false.
id The unique ID of the control.
InnerHtml Sets or returns the content between the start and end tags of the HTML element. Special characters are not automatically converted to HTML entities.
InnerText Sets or returns all text between the start and end tags of the HTML element. Special characters are automatically converted to HTML entities.
Name The unique name of the text area.
OnServerChange The name of the function to be executed when the content of the text area is modified.
Rows The number of visible rows in the text area.
runat Specifies that the control is a server control. Must be set to "server".
Style Sets or returns the CSS properties applied to the control.
TagName Returns the tag name of the element.
Value The value of the text area.
Visible A boolean value indicating whether the control is visible.

Example

HTMLTextarea


❮ Prop Webcontrol Textbox Autocompletetype Aspnet Viewstate ❯