HtmlHelper.TextArea Method
Include Protected Members
Include Inherited Members
Returns an HTML multi-line text input (text area) control for use in a web page.
This member is overloaded. For complete information about this member, including syntax, usage, and examples, click a name in the overload list.
Overload List
Name | Description | |
---|---|---|
TextArea(String) | Returns an HTML multi-line text input (text area) control that has the specified name. | |
TextArea(String, IDictionary<String, Object>) | Returns an HTML multi-line text input (text area) control that has the specified name and custom attributes defined by an attribute dictionary. | |
TextArea(String, Object) | Returns an HTML multi-line text input (text area) control that has the specified name and custom attributes defined by an attribute object. | |
TextArea(String, String) | Returns an HTML multi-line text input (text area) control that has the specified name and value. | |
TextArea(String, String, IDictionary<String, Object>) | Returns an HTML multi-line text input (text area) control that has the specified name, value, and custom attributes defined by an attribute dictionary. | |
TextArea(String, String, Object) | Returns an HTML multi-line text input (text area) control that has the specified name, value, and custom attributes defined by an attribute object. | |
TextArea(String, String, Int32, Int32, IDictionary<String, Object>) | Returns an HTML multi-line text input (text area) control that has the specified name, value, row attribute, col attribute, and custom attributes defined by an attribute dictionary. | |
TextArea(String, String, Int32, Int32, Object) | Returns an HTML multi-line text input (text area) control that has the specified name, value, row attribute, col attribute, and custom attributes defined by an attribute object. |
Top
Remarks
The HTML text area control is returned as HTML markup that can be used to render the control in a web page.