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

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

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

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

Visual Basic
<BindableAttribute(True)> _
Public Property NavigateUrl As String
C#
[BindableAttribute(true)]
public string NavigateUrl { get; set; }
Visual C++
[BindableAttribute(true)]
public:
property String^ NavigateUrl {
	String^ get ();
	void set (String^ value);
}
F#
[<BindableAttribute(true)>]
member NavigateUrl : string with get, set

ASP.NET
<asp:HyperLink NavigateUrl="String" />

Property Value

Type: System.String
The URL to link to when the HyperLink control is clicked. The default value is an empty string ('').
Remarks

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

Examples

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

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 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>



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>



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