AdRotator.Target 屬性
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
取得或設定瀏覽器視窗或框架 (Frame) 的名稱,此視窗或框架會顯示當按一下 AdRotator 控制項時,Web 網頁所連結的內容。
public:
property System::String ^ Target { System::String ^ get(); void set(System::String ^ value); };
[System.ComponentModel.Bindable(true)]
[System.ComponentModel.TypeConverter(typeof(System.Web.UI.WebControls.TargetConverter))]
public string Target { get; set; }
[<System.ComponentModel.Bindable(true)>]
[<System.ComponentModel.TypeConverter(typeof(System.Web.UI.WebControls.TargetConverter))>]
member this.Target : string with get, set
Public Property Target As String
屬性值
瀏覽器視窗或框架,顯示當按一下 AdRotator 控制項時,Web 網頁所連結的內容。 預設值是空字串 (""),會重新整理擁有焦點的視窗或框架。
- 屬性
範例
下列程式代碼範例示範如何使用 Target 屬性。 它會在新的未框架視窗中按下控件時 AdRotator ,顯示連結至的網頁內容。
<%@ Page Language="C#" 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>AdRotator Example</title>
</head>
<body>
<form id="form1" runat="server">
<h3>AdRotator Example</h3>
<asp:AdRotator id="AdRotator1" runat="server"
Target="_self"
AdvertisementFile="~/App_Data/Ads.xml"/>
</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>AdRotator Example</title>
</head>
<body>
<form id="form1" runat="server">
<h3>AdRotator Example</h3>
<asp:AdRotator id="AdRotator1" runat="server"
Target="_self"
AdvertisementFile="~/App_Data/Ads.xml"/>
</form>
</body>
</html>
下列程式代碼範例示範 XML 檔案的檔格式,其中包含廣告資訊。 如需檔格式的詳細資訊,請參閱 AdvertisementFile 成員。
<Advertisements>
<Ad>
<ImageUrl>~/Images/image1.jpg</ImageUrl>
<Height>60</Height>
<Width>190</Width>
<NavigateUrl>http://www.microsoft.com</NavigateUrl>
<AlternateText>Microsoft Main Site</AlternateText>
<Impressions>80</Impressions>
<Keyword>Topic1</Keyword>
<Caption>This is the caption for Ad#1</Caption>
</Ad>
<Ad>
<ImageUrl>~/Images/image2.jpg</ImageUrl>
<Height>90</Height>
<Width>90</Width>
<NavigateUrl>http://www.wingtiptoys.com</NavigateUrl>
<AlternateText>Wingtip Toys</AlternateText>
<Impressions>80</Impressions>
<Keyword>Topic2</Keyword>
<Caption>This is the caption for Ad#2</Caption>
</Ad>
</Advertisements>
備註
Target使用 屬性可指定在單擊控件時AdRotator,顯示連結至之網頁內容的目標視窗或框架。
注意
屬性 Target 會轉譯為 target
屬性。
target
XHTML 1.1 不允許錨點 (a
) 元素上的 屬性。 因此,如果轉譯的標記必須符合 XHTML 標準,或必須符合輔助功能標準,請勿設定 Target 屬性。 如需詳細資訊,請參閱Visual Studio中的 XHTML標準,以及Visual Studio中的 ASP.NET 和輔助功能,以及 ASP.NET。
值 Target 必須以 A 到 Z 範圍中的字母開頭, (不區分大小寫的) ,但下列特殊值開頭為底線。
目標值 | 描述 |
---|---|
_blank |
在無框架的新視窗中呈現內容。 |
_parent |
在即時父代框架組中呈現內容。 |
_search |
在搜尋窗格中呈現內容。 |
_self |
在擁有焦點 (Focus) 的框架中呈現內容。 |
_top |
在無框架的完整視窗中呈現內容。 |
注意
請查閱您的瀏覽器文件,以判斷是否支援 _search
值。 例如,Internet Explorer 5.0 或更新版本支持 _search
目標值。