System.Web.UI.HtmlControls Namespace
Allows programmatic access to individual table row <tr> elements in an HtmlTable.
The <tr> element represents a row in a table. Use the HtmlTableRow class to programmatically access the individual HTML <tr> elements on the server.
The HtmlTableRow class allows you to customize the appearance of a row in a table by specifying the row's BgColor, BorderColor, and Height properties.
The Align property controls the horizontal alignment, while the VAlign property controls the vertical alignment of the content of all the cells within the row.
NOTE: Setting some properties of a table row affects all cells in the given row. To set individual cell properties, use the properties applicable to the HtmlTableCell class.
The cells of the HtmlTableRow control are stored in its Cells collection. This allows you to programmatically access the properties, as well as the content, of each cell in the row.
For examples illustrating use of this control, see the individual member types of this class. For syntax information, see HtmlTableRow in ASP.NET Syntax for HTML Controls.
HtmlTable HtmlTableCell HtmlTableRowCollection HtmlTableCellCollection