HtmlTable.HtmlTableRowControlCollection.Add Method
.NET Framework 3.0
Adds the specified Control object to the collection.
Namespace: System.Web.UI.HtmlControls
Assembly: System.Web (in system.web.dll)
Assembly: System.Web (in system.web.dll)
| Exception type | Condition |
|---|---|
| The added control must be of type HtmlTableRow. |
The following code example demonstrates how to create a custom HtmlTable.HtmlTableRowControlCollection collection that overrides the Add method so that when rows are added to a table, they are always added at the beginning of the table's row collection. Notice how the custom Add method calls the base class's AddAt method with the index parameter equal to 0.
Community Additions
ADD
Show: