MenuItemBinding.Target 屬性
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
取得或設定目標視窗或框架,在其中顯示與套用 MenuItemBinding 物件之功能表項目相關聯的 Web 網頁內容。
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
屬性值
在其中顯示連結 Web 網頁內容的目標視窗或框架。 預設值是空字串 (""),會重新整理擁有焦點的視窗或框架。
範例
下列程式代碼範例示範如何使用 Target 屬性來指定視窗,以在單擊該功能表項時顯示與功能表項相關聯的Web內容。 若要讓此範例正常運作,您必須將下面的範例 XML 數據複製到名為 Menu.xml 的檔案。
<%@ 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>MenuItemBinding Example</title>
</head>
<body>
<form id="form1" runat="server">
<h3>MenuItemBinding Example</h3>
<asp:menu id="NavigationMenu"
datasourceid="MenuSource"
runat="server">
<DataBindings>
<asp:menuitembinding datamember="MapHomeNode"
formatstring="({0})"
textfield="Title"
valuefield="Description"
imageurlfield="ImageUrl"
tooltipfield="ToolTip"
target="_self" />
<asp:menuitembinding datamember="MapNode"
depth="1"
formatstring="[{0}]"
textfield="Title"
valuefield="Description"
imageurlfield="ImageUrl"
tooltipfield="ToolTip"
target="_blank"/>
<asp:menuitembinding datamember="MapNode"
depth="2"
formatstring="<{0}>"
textfield="Title"
valuefield="Description"
imageurlfield="ImageUrl"
tooltipfield="ToolTip"
target="_blank"/>
</DataBindings>
</asp:menu>
<asp:xmldatasource id="MenuSource"
datafile="Menu.xml"
runat="server"/>
</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>MenuItemBinding Example</title>
</head>
<body>
<form id="form1" runat="server">
<h3>MenuItemBinding Example</h3>
<asp:menu id="NavigationMenu"
datasourceid="MenuSource"
runat="server">
<DataBindings>
<asp:menuitembinding datamember="MapHomeNode"
formatstring="({0})"
textfield="Title"
valuefield="Description"
imageurlfield="ImageUrl"
tooltipfield="ToolTip"
target="_self" />
<asp:menuitembinding datamember="MapNode"
depth="1"
formatstring="[{0}]"
textfield="Title"
valuefield="Description"
imageurlfield="ImageUrl"
tooltipfield="ToolTip"
target="_blank"/>
<asp:menuitembinding datamember="MapNode"
depth="2"
formatstring="<{0}>"
textfield="Title"
valuefield="Description"
imageurlfield="ImageUrl"
tooltipfield="ToolTip"
target="_blank"/>
</DataBindings>
</asp:menu>
<asp:xmldatasource id="MenuSource"
datafile="Menu.xml"
runat="server"/>
</form>
</body>
</html>
下列程式代碼是上述範例的範例網站地圖數據。
<MapHomeNode ImageUrl="~\Images\Home.gif"
Title="Home"
Description="Root Page"
ToolTip="Home Page">
<MapNode ImageUrl="~\Images\Music.gif"
Title="Music"
Description="Music Category"
ToolTip="Music Page">
<MapNode ImageUrl="~\Images\Classical.gif"
Title="Classical"
Description="Classical Section"
ToolTip="Classical Page"/>
<MapNode ImageUrl="~\Images\Rock.gif"
Title="Rock"
Description="Rock Section"
ToolTip="Rock Page"/>
<MapNode ImageUrl="~\Images\Jazz.gif"
Title="Jazz"
Description="Jazz Section"
ToolTip="Jazz Page"/>
</MapNode>
<MapNode ImageUrl="~\Images\Movies.gif"
Title="Movies"
Description="Movies Category"
ToolTip="Movies Page">
<MapNode ImageUrl="~\Images\Action.gif"
Title="Action"
Description="Action Section"
ToolTip="Action Page"/>
<MapNode ImageUrl="~\Images\Drama.gif"
Title="Drama"
Description="Drama Section"
ToolTip="Drama Page"/>
<MapNode ImageUrl="~\Images\Musical.gif"
Title="Musical"
Description="Musical Section"
ToolTip="Musical Page"/>
</MapNode>
</MapHomeNode>
備註
Menu當控件系結至數據源時,請使用 Target 屬性來指定視窗或框架,以在單擊該功能表項時顯示連結到功能表項的Web內容。
注意
設定這個屬性會Menu.Target覆寫套用物件之功能表項MenuItemBinding之控件的 Menu 屬性。 您可以直接設定 MenuItem.Target 每個功能表項的屬性,以選擇性地覆寫此屬性。
目標值必須以 A 到 Z 範圍中的字母開頭, (不區分大小寫) ,但以底線開頭的特定特殊值除外,如下表所示。
目標值 | 描述 |
---|---|
_blank |
在無框架的新視窗中呈現內容。 |
_parent |
在即時父代框架組中呈現內容。 |
_search |
在搜尋窗格中呈現內容。 |
_self |
在擁有焦點 (Focus) 的框架中呈現內容。 |
_top |
在無框架的完整視窗中呈現內容。 |
注意
請查閱您的瀏覽器文件,以判斷是否支援 _search
值。 例如,Microsoft Internet Explorer 5.0 (含) 以後版本支援 _search
目標值。
注意
屬性 Target 會轉譯為 target
屬性。
target
XHTML 1.1 檔案類型定義中不允許元素上的 anchor
屬性。 如果對象的轉譯輸出必須符合 XHTML 1.1 規範,MenuItemBinding請勿設定 Target 屬性。 如需詳細資訊,請參閱 Visual Studio中的 XHTML 標準主題和 ASP.NET。
建立無障礙網頁時,強烈建議您避免使用 Target 屬性以另一個視窗為目標。 如需詳細資訊,請參閱 ASP.NET 輔助功能。