ASP.NET Syntax ASP.NET Syntax for HTML Controls
Creates a table row control.
Declarative Syntax
<tr id="accessID" runat="server"
align = "horizontalalignmentofrowcontent"
bgcolor = "tablebackgroundcolor"
bordercolor = "bordercolor"
height = "tableheight"
cells = "collectionoftablecells"
valign = "verticalalignmentofrowcontent"
>
<td>cellcontent</td>
</tr>
For information on the individual members of this class, see HtmlTableRow in the class library.
The HtmlTableRow control enables programming of the HTML <tr > element. You can dynamically add rows to an HtmlTable control, whether in response to control events or through binding an HtmlTable control to the entries in a data source.
To see a sample of using the HtmlTableRow control, please refer to:
HtmlTableRow Class HtmlTableCell Control HtmlTable Control Web Forms Events and Handlers
|