TreeNode.Target 속성
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
노드와 연결된 웹 페이지 콘텐츠를 표시할 대상 창 또는 프레임을 가져오거나 설정합니다.
public:
property System::String ^ Target { System::String ^ get(); void set(System::String ^ value); };
public string Target { get; set; }
member this.Target : string with get, set
Public Property Target As String
속성 값
연결된 웹 페이지 콘텐츠를 표시할 대상 창이나 프레임입니다. 이 값은 다음 표에서처럼 밑줄로 시작하는 특수한 값을 제외하고는 대/소문자 구분 없는 A-Z 범위의 문자로 시작해야 합니다.
대상 값 | Description |
---|---|
_blank | 콘텐츠를 프레임이 없는 새 창에 렌더링합니다. |
_parent | 콘텐츠를 직접 실행 프레임셋 부모에 렌더링합니다. |
_search | 콘텐츠를 검색 창에 렌더링합니다. |
_self | 콘텐츠를 포커스가 있는 프레임에 렌더링합니다. |
_top | 콘텐츠를 프레임이 없는 전체 창에 렌더링합니다. |
참고: 브라우저 설명서를 확인하여 값이 _search
지원되는지 여부를 확인합니다. 예를 들어, Microsoft Internet Explorer 5.0 이상에서는 _search
대상 값을 지원합니다.
기본값은 빈 문자열("")이며 이 경우 포커스가 있는 창이나 프레임이 새로 고쳐집니다.
예제
다음 코드 예제에는 다음 예제에 대 한 프레임을 설정 하는 방법을 보여 줍니다.
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>TreeView Frameset Example</title>
</head>
<frameset cols="30%, 75%">
<frame title="MenuFrame" name="Menu" src="TreeViewFramecs.aspx"/>
<frame title="ContentFrame" name="Content" src="Home.aspx"/>
</frameset>
</html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>TreeView Frameset Example</title>
</head>
<frameset cols="30%, 75%">
<frame title="MenuFrame" name="Menu" src="TreeViewFramevb.aspx"/>
<frame title="ContentFrame" name="Content" src="Home.aspx"/>
</frameset>
</html>
다음 코드 예제를 사용 하는 방법에 설명 합니다 Target 속성을 연결된 된 콘텐츠를 표시 하는 프레임을 지정 합니다. 이 예제는 목차를 표시 하려면 앞의 예제 프레임셋 내에서 사용 됩니다.
<%@ 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>TreeView Declarative Syntax Example</title>
</head>
<body>
<form id="form1" runat="server">
<h3>TreeView Declarative Syntax Example</h3>
<asp:TreeView id="SampleTreeView"
runat="server">
<Nodes>
<asp:TreeNode Value="Home"
NavigateUrl="Home.aspx"
Text="Home"
Target="Content"
Expanded="True">
<asp:TreeNode Value="Page 1"
NavigateUrl="Page1.aspx"
Text="Page1"
Target="Content">
<asp:TreeNode Value="Section 1"
NavigateUrl="Section1.aspx"
Text="Section 1"
Target="Content"/>
</asp:TreeNode>
<asp:TreeNode Value="Page 2"
NavigateUrl="Page2.aspx"
Text="Page 2"
Target="Content">
</asp:TreeNode>
</asp:TreeNode>
</Nodes>
</asp:TreeView>
</form>
</body>
</html>
<%@ Page Language="VB" %>
<!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>TreeView Declarative Syntax Example</title>
</head>
<body>
<form id="form1" runat="server">
<h3>TreeView Declarative Syntax Example</h3>
<asp:TreeView id="SampleTreeView"
runat="server">
<Nodes>
<asp:TreeNode Value="Home"
NavigateUrl="Home.aspx"
Text="Home"
Target="Content"
Expanded="True">
<asp:TreeNode Value="Page 1"
NavigateUrl="Page1.aspx"
Text="Page1"
Target="Content">
<asp:TreeNode Value="Section 1"
NavigateUrl="Section1.aspx"
Text="Section 1"
Target="Content"/>
</asp:TreeNode>
<asp:TreeNode Value="Page 2"
NavigateUrl="Page2.aspx"
Text="Page 2"
Target="Content">
</asp:TreeNode>
</asp:TreeNode>
</Nodes>
</asp:TreeView>
</form>
</body>
</html>
설명
사용 된 Target 해당 노드를 클릭할 때 창이 나 프레임을 표시할 웹 콘텐츠를 지정 하는 속성 노드에 연결 합니다.
참고
합니다 Target 속성으로 렌더링 한 target
특성입니다. 합니다 target
특성을 anchor
요소 XHTML 1.1 문서 종류 정의에서 허용 되지 않습니다. 설정 하지 마십시오는 Target 속성 경우 렌더링된 된 출력에 대 한는 TreeNode 개체 XHTML 1.1 규격 이어야 합니다. 자세한 내용은 XHTML 표준 Visual Studio 및 ASP.NET에입니다.
액세스할 수 있는 웹 페이지를 만들 때이 가장 좋습니다 사용 하지 마십시오는 Target 다른 창을 대상으로 하는 속성입니다. 자세한 내용은 ASP.NET 접근성을 참조하세요.
이 속성의 값은 뷰 상태에 저장 됩니다.
적용 대상
추가 정보
.NET