System.Web.UI.HtmlControls Namespace HtmlAnchor Class
Sets or retrieves advisory information, or a ToolTip, for the linked content.
Inline |
<a title = strTitle ... > |
Script |
HtmlAnchor.Title = [ strTitle ] |
strTitle |
The text displayed when the mouse pointer is placed over the HtmlAnchor. |
The property is read/write with no default value.
Use this property to provide a custom tooltip for the HtmlAnchor. Microsoft® Internet Explorer® renders the Title as a tooltip when the user hovers the mouse over the control.
The following illustrates using the Title property.
<a runat="server" title="say something amusing here">Show Me</a>
Show me
HtmlAnchor Members