TableRow Class
Assembly: System.Web (in system.web.dll)
The TableRow class represents a row in a Table control.
This class allows you to control how the contents of the row are displayed. The alignment of the contents in the row are specified by setting the HorizontalAlign and VerticalAlign properties.
You can programmatically manage the cells in the row by using the Cells collection. The Cells collection is a collection of TableCell objects that represent the cells in the row.
Caution: |
|---|
| The TableCell control can be used to display user input, which might include malicious client script. Check any information that is sent from a client for executable script, SQL statements, or other code before displaying it in your application. ASP.NET provides an input request validation feature to block script and HTML in user input. Validation server controls are also provided to assess user input. For more information, see Validation ASP.NET Controls. |
| Topic | Location |
|---|---|
| How to: Add Rows and Cells Dynamically to a Table Web Server Control | Building ASP .NET Web Applications |
| How to: Add Rows and Cells Dynamically to a Table Web Server Control | Building ASP .NET Web Applications |
- AspNetHostingPermission for operating in a hosted environment. Demand value: LinkDemand; Permission value: Minimal.
- AspNetHostingPermission for operating in a hosted environment. Demand value: InheritanceDemand; Permission value: Minimal.
System.Web.UI.Control
System.Web.UI.WebControls.WebControl
System.Web.UI.WebControls.TableRow
Derived Classes
Caution: