HtmlAnchor.Name 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 le nom du signet défini dans le HtmlAnchor contrôle serveur.
public:
property System::String ^ Name { System::String ^ get(); void set(System::String ^ value); };
public string Name { get; set; }
member this.Name : string with get, set
Public Property Name As String
Valeur de propriété
Nom du signet.
Exemples
L’exemple de code suivant montre comment utiliser la Name propriété pour marquer différentes sections de la page Web et les lier à partir d’une table des matières.
<%@ Page Language="C#" %>
<!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>Table of Contents</title>
</head>
<body>
<form id="form1" runat="server">
<div>
<a id="TOC"/>
<h2>Table of Contents</h2>
<a href="#Topic1">Topic 1</a><br />
<a href="#Topic2">Topic 2</a><br />
<a href="#Topic3">Topic 3</a><br />
<br /><br />
<a id="Topic1"/>
<h3>Topic 1</h3>
<br /><br />
Contents for first topic...
<br /><br /><br /><br /><br /><br /><br /><br /><br /><br /><br />
<a href="#TOC">Top</a><br />
<a id="Topic2"/>
<h3>Topic 2</h3>
<br /><br />
Contents for second topic...
<br /><br /><br /><br /><br /><br /><br /><br /><br /><br /><br />
<a href="#TOC">Top</a><br />
<br />
<a id="Topic3"/>
<h3>Topic 3</h3>
<br /><br />
Contents for third topic...
<br /><br /><br /><br /><br /><br /><br /><br /><br /><br /><br />
<a href="#TOC">Top</a><br />
<br /><br />
<div>
</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>Table of Contents</title>
</head>
<body>
<form id="form1" runat="server">
<div>
<a id="TOC"/>
<h2>Table of Contents</h2>
<a href="#Topic1">Topic 1</a><br />
<a href="#Topic2">Topic 2</a><br />
<a href="#Topic3">Topic 3</a><br />
<br /><br />
<a id="Topic1"/>
<h3>Topic 1</h3>
<br /><br />
Contents for first topic...
<br /><br /><br /><br /><br /><br /><br /><br /><br /><br /><br />
<a href="#TOC">Top</a><br />
<a id="Topic2"/>
<h3>Topic 2</h3>
<br /><br />
Contents for second topic...
<br /><br /><br /><br /><br /><br /><br /><br /><br /><br /><br />
<a href="#TOC">Top</a><br />
<br />
<a id="Topic3"/>
<h3>Topic 3</h3>
<br /><br />
Contents for third topic...
<br /><br /><br /><br /><br /><br /><br /><br /><br /><br /><br />
<a href="#TOC">Top</a><br />
<br /><br />
<div>
</form>
</body>
</html>
Remarques
Utilisez cette propriété pour marquer une section sur une page Web avec un nom. Cela vous permet de créer un lien vers cette section à partir de n’importe où sur la même page. Par exemple, vous pouvez fournir une table des matières en haut d’une page qui liera directement aux rubriques de la page.
Pour créer un lien vers une section marquée, utilisez un HtmlAnchor contrôle avec la HRef propriété définie sur le nom de la section, précédée d’un symbole # (<un HRef= « #Topic1"/>).