THyperLink displays displays a hyperlink to another Web page.
The THyperLink component is typically displayed as text specified by the Text property. If an image is specified by the ImageUrl property, the image will be displayed and the Text is shown as a tooltip of the image.alternative image text. If both Text and ImageUrl are empty, the content enclosed in the body of the THyperLink component will be displayed.
Note, Text will be HTML encoded before it is displayed in the THyperLink component. If you don't want it to be so, set EncodeText to false.
Namespace: System.Web.UI.WebControls
Properties
Text, string, kept in viewstate
Gets or sets the text caption for the THyperLink component.
EncodeText, boolean, default=true, kept in viewstate
Gets or sets the value indicating whether Text should be HTML-encoded when rendering.
NavigateUrl, string, kept in viewstate
Gets or sets the URL to link to when the THyperLink component is clicked.
Target, string, kept in viewstate
Gets or sets the target window or frame to display the Web page content linked to when the THyperLink component is clicked.
Valid values include '_blank', '_parent', '_self', '_top', and empty string.
ImageUrl, string, kept in viewstate
Gets or sets the location of an image to display in the THyperLink component.