HtmlAnchor.HRef Property

Definition

Gets or sets the URL target of the link specified in the HtmlAnchor server control.

public:
 property System::String ^ HRef { System::String ^ get(); void set(System::String ^ value); };
public string HRef { get; set; }
member this.HRef : string with get, set
Public Property HRef As String

Property Value

The URL target of the link.

Examples

The following code example demonstrates how to use the HRef property to specify a Web page to navigate to when the HtmlAnchor control is clicked.

<%@ 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" runat="server"> Enter site.</a>
  
      </form>
    </body>
 
 </html>
<%@ 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 runat="server">
    <title>ASP.NET Example</title>
</head>
<body>
      <form id="form1" method="post" runat="server">
  
         <a href="http://www.microsoft.com" runat="server"> Enter site.</a>
  
      </form>
    </body>
 
 </html>

Remarks

Use this property to specify the URL to link to when the HtmlAnchor control is clicked.

Applies to