System.Web.UI.HtmlControls Namespace

Contains classes that allow you to create HTML server controls on a Web Forms page. HTML server controls run on the server and map directly to standard HTML tags supported by most browsers. This allows you to programmatically control the HTML elements on a Web Forms page.

Classes

HtmlAnchor

Allows programmatic access to the HTML <a> element on the server.

HtmlArea

Provides programmatic access to the HTML <area> element on the server.

HtmlAudio

Provides programmatic access to the HTML <audio> element on the server.

HtmlButton

Allows programmatic access to the HTML <button> tag on the server.

HtmlContainerControl

Serves as the abstract base class for HTML server controls that map to HTML elements that are required to have an opening and a closing tag.

HtmlControl

Defines the methods, properties, and events common to all HTML server controls in the ASP.NET page framework.

HtmlElement

Provides programmatic access to the document's <html> element on the server, which represents the document's root.

HtmlEmbed

Provides programmatic access to the HTML embed element on the server.

HtmlEmptyTagControlBuilder

Interacts with the page parser to build HTML server controls that do not have a body or closing tag. This class cannot be inherited.

HtmlForm

Provides programmatic access to the HTML <form> element on the server.

HtmlGenericControl

Defines the methods, properties, and events for all HTML server control elements not represented by a specific .NET Framework class.

HtmlHead

Provides programmatic access to the HTML head element in server code.

HtmlHeadBuilder

Interacts with the parser to build an HtmlHead control.

HtmlIframe

Provides programmatic access to the HTML <iframe> element on the server.

HtmlImage

Provides programmatic access for the HTML <img> element on the server.

HtmlInputButton

Allows programmatic access to the HTML <input type= button>, <input type= submit>, and <input type= reset> elements on the server.

HtmlInputCheckBox

Allows programmatic access to the HTML <input type= checkbox> element on the server.

HtmlInputControl

Serves as the abstract base class that defines the methods, properties, and events common to all HTML input controls, such as the <input type=text>, <input type=submit>, and <input type= file> elements.

HtmlInputFile

Allows programmatic access to the HTML <input type= file> element on the server.

HtmlInputGenericControl

Defines the methods, properties, and events for server-side access to the HTML5 input element.

HtmlInputHidden

Allows programmatic access to the HTML <input type=hidden> element on the server.

HtmlInputImage

Allows programmatic access to the HTML <input type= image> element on the server.

HtmlInputPassword

Allows programmatic access to the HTML <input type= password> element on the server.

HtmlInputRadioButton

Allows programmatic access to the HTML <input type= radio> element on the server.

HtmlInputReset

Allows programmatic access to the HTML <input type=reset> element on the server.

HtmlInputSubmit

Allows programmatic access to the HTML <input type= submit> element on the server.

HtmlInputText

Allows programmatic access to the HTML <input type= text> and <input type= password> elements on the server.

HtmlLink

Allows programmatic access to the HTML link element on the server.

HtmlMeta

Allows programmatic access to the HTML <meta> tag on the server.

HtmlSelect

Allows programmatic access to the HTML <select> element on the server.

HtmlSelectBuilder

Interacts with the parser to build an HtmlSelect control.

HtmlSource

Provides programmatic access to the HTML <source> element on the server.

HtmlTable

Allows programmatic access on the server to the HTML <table> element.

HtmlTable.HtmlTableRowControlCollection

Represents a collection of HtmlTableRow objects that are the rows of an HtmlTable control.

HtmlTableCell

Represents the <td> and <th> HTML elements in an HtmlTableRow object.

HtmlTableCellCollection

A collection of HtmlTableCell objects that represent the cells in a single row of an HtmlTable control. This class cannot be inherited.

HtmlTableRow

Represents the <tr> HTML element in an HtmlTable control.

HtmlTableRow.HtmlTableCellControlCollection

Represents a collection of HtmlTableCell objects that are the cells of an HtmlTableRow control.

HtmlTableRowCollection

A collection of HtmlTableRow objects that represent the rows of an HtmlTable control. This class cannot be inherited.

HtmlTextArea

Allows programmatic access to the <textarea> HTML element on the server.

HtmlTitle

Allows programmatic access to the HTML <title> element on the server.

HtmlTrack

Provides programmatic access to the HTML <track> element.

HtmlVideo

Provides programmatic access to the HTML <video> element on the server.

See also