ASP.NET HtmlTableRow Control
Definition and Usage
The HtmlTableRow control is used to control the <tr> element. In HTML, the <tr> element is used to create table rows.
Properties
Properties | Description |
---|---|
Align | The alignment of the row. |
Attributes | Returns all attribute names and value pairs of the element. |
BGColor | The background color of the row. |
BorderColor | The color of the border. |
Cells | Returns the cells in the row. |
Disabled | Boolean value indicating whether the control is disabled. The default is false. |
Height | The height of the row. |
id | The unique id of the control. |
InnerHtml | Sets or returns the content between the start tag and end tag of the HTML element. Special characters are not automatically converted to HTML entities. |
InnerText | Sets or returns all the text between the start tag and end tag of the HTML element. Special characters are automatically converted to HTML entities. |
runat | Specifies that the control is a server control. It must be set to "server". |
Style | Sets or returns the CSS properties applied to the control. |
TagName | Returns the tag name of the element. |
VAlign | The vertical alignment of cells in the row. |
Visible | Boolean value indicating whether the control is visible. |
Example
- HTMLTable
- In this example, we declare two HtmlSelect controls, an HtmlInputButton control, and an HtmlTable control in the .aspx file. Users can select the number of cells and rows. When the submit button is triggered, the submit subroutine is executed. The submit subroutine generates a table based on the user's input.
- HTMLTable 2
- In this example, we declare an HtmlTable control and an HtmlInputButton control in the .aspx file. When the submit button is triggered, the submit subroutine is executed. The submit subroutine modifies the background color and border color of the table, and it also modifies the content of the cells.