System.Web.UI.WebControls Namespace
Encapsulates a collection of TableRow objects that represent a single row in a Table control.
Use the TableRowCollection class to programmatically manage a collection of TableRow objects that make up a Table control. This class is commonly used to add, remove, or loop thru the rows in a given Table.
A Table control contains a Rows property that represents a collection of TableRow objects, each representing the individual rows in the table.
Each TableRow control in turn contains a Cells property that represents a collection of TableCell objects, each representing the individual cells in the table.
To get an individual cell, you first get a TableRow object from the Rows property of a Table control, then get a TableCell object from the Cells property of the TableRow object.
Rows TableRow Cells TableCell