Literal.Text Property
Assembly: System.Web (in system.web.dll)
[LocalizableAttribute(true)] [BindableAttribute(true)] public: virtual property String^ Text { String^ get () sealed; void set (String^ value) sealed; }
/** @property */ public final String get_Text () /** @property */ public final void set_Text (String value)
public final function get Text () : String public final function set Text (value : String)
Property Value
The caption displayed in the Literal control.Use the Text property to specify or determine the caption displayed in the Literal control. This allows you to programmatically change the caption at run time.
The caption is HTML-decoded depending on how you assign a value to this property. If you assign a value through an attribute of the Literal control, the value is HTML decoded before it is displayed. For example, <asp:Literal id="DisplayLiteral" Text="A B"/> is rendered as "A B" on the browser. However, if you set this property programmatically or by placing the text between the opening and closing tags of the control, the caption is not HTML decoded. For example, <asp:Literal id="DisplayLiteral"> A B </asp:Literal> is rendered as "A B".
Caution |
|---|
| 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. |
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 ASP.NET Globalization and Localization.
| Topic | Location |
|---|---|
| How to: Add Literal Web Server Controls to a Web Forms Page | Building ASP .NET Web Applications |
| How to: Add Literal Web Server Controls to a Web Forms Page | Building ASP .NET Web Applications |
The following example demonstrates how to use the Text property to programmatically change the caption displayed in the Literal control.
Note |
|---|
| The following code sample uses the single-file code model and may not work correctly if copied directly into a code-behind file. This code sample must be copied into an empty text file that has an .aspx extension. For more information on the Web Forms code model, see ASP.NET Web Page Code Model. |
Windows 98, Windows 2000 SP4, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see System Requirements.
Caution