HtmlLink.Href Propriété
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Obtient ou définit l'URL cible du lien spécifié dans le contrôle HtmlLink.
public:
virtual property System::String ^ Href { System::String ^ get(); void set(System::String ^ value); };
public virtual string Href { get; set; }
member this.Href : string with get, set
Public Overridable Property Href As String
Valeur de propriété
Cible URL du lien.
Exemples
L’exemple de code suivant montre comment définir la Href propriété sur une feuille de style en cascade (CSS) enregistrée dans le même répertoire que la page web. Pour obtenir un exemple de code complet et opérationnel, consultez la rubrique Vue d’ensemble de la HtmlLink classe.
using System;
using System.Data;
using System.Configuration;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Web.UI.HtmlControls;
public partial class HtmlLinkcs_aspx
{
void Page_Init(object sender, EventArgs e)
{
// Create an instance of HtmlLink.
HtmlLink myHtmlLink = new HtmlLink();
myHtmlLink.Href = "StyleSheet.css";
myHtmlLink.Attributes.Add("rel", "stylesheet");
myHtmlLink.Attributes.Add("type", "text/css");
// Add the instance of HtmlLink to the <HEAD> section of the page.
head1.Controls.Add(myHtmlLink);
}
}
// Define an HtmlLink control.
HtmlLink myHtmlLink = new HtmlLink();
myHtmlLink.Href = "~/StyleSheet.css";
myHtmlLink.Attributes.Add("rel", "stylesheet");
myHtmlLink.Attributes.Add("type", "text/css");
' Define an HtmlLink control.
Dim myHtmlLink As New HtmlLink()
myHtmlLink.Href = "~/StyleSheet.css"
myHtmlLink.Attributes.Add("rel", "stylesheet")
myHtmlLink.Attributes.Add("type", "text/css")
Partial Class HtmlLinkvb_aspx
Sub Page_Init(ByVal sender As Object, ByVal e As EventArgs)
' Create an instance of HtmlLink.
Dim myHtmlLink As HtmlLink = New HtmlLink()
myHtmlLink.Href = "StyleSheet.css"
myHtmlLink.Attributes.Add("rel", "stylesheet")
myHtmlLink.Attributes.Add("type", "text/css")
' Add the instance of HtmlLink to the <HEAD> section of the page.
head1.Controls.Add(myHtmlLink)
End Sub
End Class
Remarques
La Href propriété spécifie la cible d’URL du lien spécifié dans le HtmlLink contrôle. Vous pouvez utiliser cette propriété pour spécifier l’emplacement d’une feuille de style en cascade (CSS) externe.