HyperLink.Text Property (System.Web.UI.WebControls)

Switch View :
ScriptFree
.NET Framework Class Library
HyperLink.Text Property

Gets or sets the text caption for the HyperLink control.

Namespace:  System.Web.UI.WebControls
Assembly:  System.Web (in System.Web.dll)
Syntax

Visual Basic
<BindableAttribute(True)> _
<PersistenceModeAttribute(PersistenceMode.InnerDefaultProperty)> _
Public Overridable Property Text As String
C#
[BindableAttribute(true)]
[PersistenceModeAttribute(PersistenceMode.InnerDefaultProperty)]
public virtual string Text { get; set; }
Visual C++
[BindableAttribute(true)]
[PersistenceModeAttribute(PersistenceMode::InnerDefaultProperty)]
public:
virtual property String^ Text {
	String^ get ();
	void set (String^ value);
}
F#
[<BindableAttribute(true)>]
[<PersistenceModeAttribute(PersistenceMode.InnerDefaultProperty)>]
abstract Text : string with get, set
[<BindableAttribute(true)>]
[<PersistenceModeAttribute(PersistenceMode.InnerDefaultProperty)>]
override Text : string with get, set
ASP.NET
<asp:HyperLink Text="String" />

Property Value

Type: System.String
The text caption for the HyperLink control. The default value is an empty string ("").
Remarks

The HyperLink control can be displayed as text or an image. Use the Text property to specify the text to display for the HyperLink control.

If both the Text and ImageUrl properties are set, the ImageUrl property takes precedence. If the image is unavailable, the text in the Text property is displayed. In browsers that support ToolTip functionality, the Text property also becomes the ToolTip.

Caution note 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.

Examples

The following example demonstrates how to use the Text property to specify the text to display for the HyperLink control.

Visual Basic

<%@ Page Language="VB" AutoEventWireup="True" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >
<head>
    <title>HyperLink Sample</title>
</head>
<body>
<form id="Form1" runat="server">

    <h3>HyperLink Sample</h3>

    Click on the HyperLink:<br />  

    <asp:HyperLink id="hyperlink1" 
                   NavigateUrl="http://www.microsoft.com"
                   Text="Microsoft Official Site"
                   Target="_new"
                   runat="server"/>       

</form>
</body>
</html>



C#

<%@ 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">
<html xmlns="http://www.w3.org/1999/xhtml" >
<head>
    <title>HyperLink Sample</title>
</head>
<body>
<form id="Form1" runat="server">


    <h3>HyperLink Sample</h3>

    Click on the HyperLink:<br />  

    <asp:HyperLink id="hyperlink1" 
                   NavigateUrl="http://www.microsoft.com"
                   Text="Microsoft Official Site"
                   Target="_new"
                   runat="server"/>       
</form>
</body>
</html>



Version Information

.NET Framework

Supported in: 4, 3.5, 3.0, 2.0, 1.1, 1.0
Platforms

Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
See Also

Reference

Other Resources