HtmlAnchor.Title Property
.NET Framework 4
Gets or sets the ToolTip text displayed when the mouse pointer is placed over the HtmlAnchor control.
Assembly: System.Web (in System.Web.dll)
Property Value
Type: System.StringThe text displayed when the mouse pointer is placed over the HtmlAnchor.
Use this property to provide a custom ToolTip for the HtmlAnchor control. This text is displayed when the mouse pointer rests over the control.
The following code example demonstrates how to use the Title property to provide custom text for the ToolTip.
<%@ 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 runat="server"> <title>ASP.NET Example</title> </head> <body> <form id="form1" method="post" runat="server"> <a href="http://www.microsoft.com" title="Site One" runat="server"> Enter site.</a> </form> </body> </html>
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.