HyperLink.NavigateUrl Property

Definition

Gets or sets the URL to link to when the HyperLink control is clicked.

C#
[System.ComponentModel.Bindable(true)]
public string NavigateUrl { get; set; }

Property Value

The URL to link to when the HyperLink control is clicked. The default value is an empty string ('').

Attributes

Examples

The following example demonstrates how to set the NavigateUrl property to specify the URL to link to when the HyperLink control is clicked.

ASP.NET (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 Example</title>
</head>
<body>
<form id="Form1" runat="server">

   <h3>HyperLink Example</h3>

   Click on the HyperLink:<br />  

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

Remarks

Use the NavigateUrl property to specify the URL to navigate to when the HyperLink control is clicked.

Applies to

Product Versions
.NET Framework 1.1, 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1

See also