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>
설명
웹 페이지의 섹션을 이름으로 표시하려면 이 속성을 사용합니다. 이렇게 하면 동일한 페이지의 어디에서나 이 섹션에 연결할 수 있습니다. 예를 들어 페이지의 토픽에 직접 연결되는 목차를 페이지 맨 위에 제공할 수 있습니다.
표시된 섹션에 연결하려면 # 기호(<a HRef= "#Topic1"/>)가 앞에 오는 섹션 이름으로 설정된 속성이 있는 컨트롤 HRef 을 사용합니다HtmlAnchor.