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