System.Web.UI.HtmlControls Namespace HtmlTextArea Class
Initializes a new instance of the HtmlTextArea class.
[ VB ]
Public Sub New ( )
[ C# ]
public HtmlTextArea ( );
[ C++ ]
public: HtmlTextArea ( );
[ JScript ]
public function HtmlTextArea ( );
Use this constructor to create and initialize a new instance of the HtmlTextArea control.
This constructor sets the initial TagName property value to textarea.
The below code shows how to create a new instance of an HtmlTextArea class.
HtmlTextArea myControl = new HtmlTextArea ( );
Dim myControl As New HtmlTextArea ( ) |
|
C# |
VB |
HtmlTextArea Members