HtmlGeneric class properties and its descriptions

This ASP.NET reference explains HtmlGeneric class properties and its descriptions.

Web developers can use this class to represent an HTML server control element not directly represented by a .NET Framework class, such as <span>, <div>, <body>, or <font>.

Namespace: System.Web.UI.HtmlControls Assembly: System.Web (in System.Web.dll)

Property

Description

Supported in .NET version

Adapter

This property gets the browser-specific adapter for the control. If [...]

HtmlTableRow class properties and its descriptions

This ASP.NET reference explains HtmlTableRow  class properties and its descriptions.

This class represents the <tr> HTML element in an HtmlTable control and Web developers can use the class to programmatically control the <tr> HTML elements in an HtmlTable control. The HtmlTableRow class allows them to customize the appearance of a row in a table by specifying the [...]

HtmlTableCell class properties and its descriptions

This ASP.NET reference explains HtmlTableCell class properties and its descriptions.

This class represents the <td> (data cell) and <th> (table heading cell) HTML elements in an HtmlTableRow object. The HtmlTableCell class allows Web developers to customize the appearance of a cell in a table by specifying the background color, the border color, the height, and the width. [...]

HtmlTable class properties and its descriptions

This ASP.NET reference explains HtmlTable class properties and its descriptions.

Web developers use the HtmlTable control to programmatically control the HTML <table> element on the server and this allows them to create a table on a Web page. They can dynamically change the appearance of the <table> element by setting the BgColor, Border, BorderColor, Height, and Width [...]

HtmlTextArea class properties and its descriptions

This ASP.NET reference explains HtmlTextArea class properties and its descriptions.

The HtmlTextArea control allows programmatic access to the HTML <textarea> element on the server and Web developers can use it to create a multiline text boxes on a Web page. The height and width of a multiple text boxes can be controlled by setting the Rows and [...]

HtmlHead class properties and its descriptions

This ASP.NET reference explains HtmlHead class properties and its descriptions.

The HtmlHead control allows programmatic access to the HTML head element in server code. The HTML head element is a container that can contain additional information about the page and the HtmlHead control is useful for specifying page formatting information that can be accessed at run time.

Namespace: [...]

HtmlSelect class properties and its descriptions

This ASP.NET reference explains HtmlSelect class properties and its descriptions.

Web developers use the HtmlSelect control to create a selection box. They can determine item listings in the control by placing HTML <option> elements between the opening and closing <select> tags. Each item is represented by a System.Web.UI.WebControls.ListItem object.  Developers can specify the text that is displayed [...]

HtmlImage class properties and its descriptions

This ASP.NET reference explains HtmlImage class properties and its descriptions.

Web developers use this control to display an image on a Web page. The HtmlImage control can be programmatically manipulated to change the image displayed, the image size, and the alignment of the image relative to other page elements.

Namespace: System.Web.UI.HtmlControls Assembly: System.Web (in System.Web.dll)

Property

Description

Supported in .NET version

Adapter

This [...]

HtmlForm class properties and its descriptions

This ASP.NET reference explains HtmlForm class properties and its descriptions.

The HtmlForm control allows programmatic access to the HTML <form> element on the server. The control is a container for server controls on a Web Forms page and all server controls that post back to the server must be placed between its opening and closing tags. Web [...]

HtmlButton class properties and its descriptions

This ASP.NET reference explains HtmlButton class properties and its descriptions.

The HtmlButton control allows programmatic access to the HTML <button> element on the server. To perform a set of custom instructions when the HtmlButton control is clicked, Web developer has to provide a custom event handler for the ServerClick event. The HtmlButton control renders ECMAScript to the [...]