HtmlTableCell Class
Represents the <td> and <th> HTML elements in an HtmlTableRow object.
Assembly: System.Web (in System.Web.dll)
The <td> element represents a data cell in a table, while the <th> element represents a table heading cell. Use the HtmlTableCell class to programmatically control the <td> and <th> HTML elements in an HtmlTableRow object.
The HtmlTableCell class allows you to customize the appearance of a cell in a table by specifying the background color, the border color, the height, and the width. These attributes are set using the BgColor, BorderColor, Height, and Width properties.
You can control how the content of a cell is displayed by specifying the vertical and horizontal alignment of the contents. You can also specify whether the content automatically continues on the next line when the end of the cell is reached. The horizontal alignment is controlled by the Align property, while the VAlign property controls the vertical alignment. The NoWrap property indicates whether text wrapping is disabled.
By using the ColSpan or the RowSpan property, you can control the number of columns or rows that a cell occupies. For example, you can create a cell that occupies two columns in a table by setting the ColSpan property to 2.
For a list of initial property values for an instance of HtmlTableCell, see the HtmlTableCell constructor.
![]() |
---|
This 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 Server Control Syntax. |
Topic | Location |
---|---|
How to: Add HTML Server Controls to a Web Page Using ASP.NET Syntax | Building ASP .NET Web Applications |
How to: Set HTML Server Control Properties Programmatically | Building ASP .NET Web Applications |
How to: Add HTML Server Controls to a Web Page Using ASP.NET Syntax | Building ASP .NET Web Applications |
How to: Set HTML Server Control Properties Programmatically | Building ASP .NET Web Applications |
The following code example demonstrates how to use an HtmlTableCell to modify the contents of a cell in a table. Note that the Rows collection of an HtmlTable control contains a collection of the rows (HtmlTableRow objects) in the table. The Cells collection of an HtmlTableRow object is a collection of the cells (HtmlTableCell objects) in a row.
<%@ Page Language="C#" AutoEventWireup="True" %> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <script runat="server"> void Button_Click(Object sender, EventArgs e) { // Iterate through the rows of the table. for (int i = 0; i <= Table1.Rows.Count - 1; i++) { // Iterate through the cells of a row. for (int j = 0; j <= Table1.Rows[i].Cells.Count - 1; j++) { // Change the inner HTML of the cell. Table1.Rows[i].Cells[j].InnerHtml = "Row " + i.ToString() + ", Column " + j.ToString(); } } } </script> <html xmlns="http://www.w3.org/1999/xhtml" > <head> <title>HtmlTableCell</title> </head> <body> <form id="form1" runat="server"> <h3>HtmlTableCell Example</h3> <table id="Table1" runat="server" style="border-width: 1; border-color: Black"> <tr> <td> Cell 1 </td> <td> Cell 2 </td> </tr> <tr> <td> Cell 3 </td> <td> Cell 4 </td> </tr> </table> <br /><br /> <input type="button" value="Change Table Contents" onserverclick="Button_Click" runat="server"/> </form> </body> </html>
- 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.HtmlControls.HtmlControl
System.Web.UI.HtmlControls.HtmlContainerControl
System.Web.UI.HtmlControls.HtmlTableCell
Windows 7, Windows Vista, Windows XP SP2, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP Starter Edition, Windows Server 2008 R2, Windows Server 2008, Windows Server 2003, Windows Server 2000 SP4, Windows Millennium Edition, Windows 98
The .NET Framework and .NET Compact Framework do not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.