Aracılığıyla paylaş


HtmlAnchor.HRef Özellik

Tanım

Sunucu denetiminde belirtilen bağlantının URL hedefini HtmlAnchor alır veya ayarlar.

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

Özellik Değeri

String

Bağlantının URL hedefi.

Örnekler

Aşağıdaki kod örneği, denetim tıklatıldığında gidilmesi gereken bir Web sayfası belirtmek için özelliğinin HtmlAnchor nasıl kullanılacağını HRef gösterir.

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

Açıklamalar

Denetime tıklandığında HtmlAnchor bağlanılacak URL'yi belirtmek için bu özelliği kullanın.

Şunlara uygulanır