HtmlAnchor.Name 属性
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
获取或设置 HtmlAnchor 服务器控件中定义的书签名。
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
属性值
书签名。
示例
下面的代码示例演示如何使用 Name 属性标记网页上的不同节,并从目录中链接到它们。
<%@ 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>
注解
使用此属性可标记具有名称的网页上的分区。 这样,可以从同一页上的任意位置链接到此部分。 例如,可以在页面顶部提供一个目录,该目录将直接链接到页面上的主题。
若要链接到标记的节,请使用 HtmlAnchor 属性设置为节名称的控件 HRef ,前面是 #符号 (<a HRef= "#Topic1"/>) 。