The HtmlInputCheckBox control allows programmatic access to the HTML <input type= checkbox> element on the server. Web developers use the HtmlInputCheckBox control to allow the end user to select a true or false state. They can specify whether the control is selected, by using the Checked property. The HtmlInputCheckBox control provides a ServerChange event that is raised when …
asp.net
The HtmlInputButton control allows programmatic access to the HTML <input type= button>, <input type= submit>, and <input type= reset> elements on the server. An <input type=button> HTML element is a push button with no default behavior when clicked. An <input type=submit> HTML element is a button that submits a form when clicked. An <input type=reset> HTML button resets …
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 the target browser does not require an adapter, returns …
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 background color, the border color, and the height of the cells …
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. These attributes are set using the BgColor, BorderColor, Height, and Width …
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 properties. They can also control how the content of a cell …
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 Cols properties. Web developer can assign a name to the control …
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: System.Web.UI.HtmlControls Assembly: System.Web (in System.Web.dll)
Property
Description
Supported in .NET version
Adapter
This property …
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 for each item in the control, by setting the ListItem.Text property …
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 property gets the browser-specific adapter for the control. If …