ASP.NET TableCell Control

Definition and Usage

The TableCell control, combined with the Table control and TableRow control, is used to create cells in a table.

Tip:Each cell in a row is stored in TableRow controlin the Cells collection.

Property

Property Description .NET
AssociatedHeaderCellID The list of table header cells associated with the TableCell control. 2.0
ColumnSpan The number of columns spanned by the cell. 1.0
HorizontalAlign The horizontal alignment of the content within a cell. 1.0
RowSpan The number of rows spanned by the cell. 1.0
runat Specifies that the control is a server control. It must be set to "server". 1.0
Text Specifies the text content of the cell. 1.0
VerticalAlign The vertical alignment of the content within a cell. 1.0
Wrap Specifies whether the cell content wraps. 1.0

Web Control Standard Properties

AccessKey, Attributes, BackColor, BorderColor, BorderStyle, BorderWidth 
CssClass, Enabled, Font, EnableTheming, ForeColor, Height, IsEnabled 
SkinID, Style, TabIndex, ToolTip, Width

For a complete description, please visit Web Control Standard Properties.

Control Standard Properties

AppRelativeTemplateSourceDirectory, BindingContainer, ClientID, Controls 
EnableTheming, EnableViewState, ID, NamingContainer, Page, Parent, Site 
TemplateControl, TemplateSourceDirectory, UniqueID, Visible

For a complete description, please visitControl Standard Properties.

Example

Table
In this example, we declare two Table controls in the .aspx file.
Table 2
In this example, we declare a Table control, three TableRow controls, and two TableCell controls in the .aspx file.