TableCell.Text Property

Definition

Gets or sets the text contents of the cell.

C#
[System.ComponentModel.Bindable(true)]
public virtual string Text { get; set; }
C#
[System.Web.UI.PersistenceMode(System.Web.UI.PersistenceMode.InnerDefaultProperty)]
public virtual string Text { get; set; }

Property Value

The text contents of the cell. The default value is Empty.

Attributes

Examples

The following code example demonstrates how to create a new instance of a TableCell control programmatically. In particular, note how the Text property is used for setting the contents of the TableCell control.

This code example is part of a larger example provided for the TableCell class.

C#
// Create more rows for the table.
for (int rowNum = 2; rowNum < 10; rowNum++)
{
    TableRow tempRow = new TableRow();
    for (int cellNum = 0; cellNum < 3; cellNum++)
    {
        TableCell tempCell = new TableCell();
        tempCell.Text = 
            String.Format("({0},{1})", rowNum, cellNum);
        tempRow.Cells.Add(tempCell);
    }
    Table1.Rows.Add(tempRow);
}

Remarks

Use the Text property to specify or determine the text contents of the cell. This property is commonly used to programmatically update the contents of a cell.

Poznámka

Setting the Text property will clear any other controls contained in the TableCell.

Výstraha

The Text 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 Securing Standard Controls, How to: Protect Against Script Exploits in a Web Application by Applying HTML Encoding to Strings, and Validating User Input in ASP.NET Web Pages.

The value of this property, when set, can be saved automatically to a resource file by using a designer tool. For more information, see LocalizableAttribute and Globalization and Localization.

Applies to

Produkt Verzie
.NET Framework 1.1, 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1

See also