HtmlAnchor.HRef Propiedad
Definición
Importante
Parte de la información hace referencia a la versión preliminar del producto, que puede haberse modificado sustancialmente antes de lanzar la versión definitiva. Microsoft no otorga ninguna garantía, explícita o implícita, con respecto a la información proporcionada aquí.
Obtiene o establece la dirección URL de destino del vínculo especificado en el control de servidor HtmlAnchor.
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
Valor de propiedad
La dirección URL de destino del vínculo.
Ejemplos
En el ejemplo de código siguiente se muestra cómo usar la HRef propiedad para especificar una página web a la que navegar cuando se hace clic en el HtmlAnchor control.
<%@ 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>
Comentarios
Utilice esta propiedad para especificar la dirección URL a la que se vinculará cuando se haga clic en el HtmlAnchor control.