HtmlAnchor.HRef 属性

定义

获取或设置在 HtmlAnchor 服务器控件中指定的链接的 URL 目标。

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

属性值

String

链接的 URL 目标。

示例

下面的代码示例演示如何使用 HRef 属性指定要在单击控件时导航到的 HtmlAnchor 网页。

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

注解

使用此属性指定要在单击控件时链接到的 HtmlAnchor URL。

适用于