共用方式為


AdRotator.NavigateUrlKey 屬性

定義

取得或設定包含目標 URL 的項目名稱。 這個 API 已經過時。 如需如何開發 ASP.NET 行動應用程式的資訊,請參閱 具有 ASP.NET 的Mobile Apps & Sites。 這個 API 已經過時。 如需如何開發 ASP.NET 行動應用程式的資訊,請參閱 具有 ASP.NET 的Mobile Apps & Sites

public:
 property System::String ^ NavigateUrlKey { System::String ^ get(); void set(System::String ^ value); };
[System.ComponentModel.Bindable(true)]
public string NavigateUrlKey { get; set; }
[<System.ComponentModel.Bindable(true)>]
member this.NavigateUrlKey : string with get, set
Public Property NavigateUrlKey As String

屬性值

XML 檔中包含目標 URL 的項目名稱。

屬性

範例

下列程式代碼範例示範如何使用 NavigateUrlKey 屬性來設定廣告的目標 URL。 如需完整的範例程式代碼,請參閱 AdRotator 類別概觀。

<!-- The AdRotator control -->
<mobile:AdRotator id="AdControl" runat="server"
    ImageKey="MobileImgSrc" NavigateUrlKey="TargetUrl"
    AdvertisementFile="App_Data/ads.xml" Alignment="Left" 
    KeywordFilter="Developer" OnAdCreated="AdCreated_Event">
    <DeviceSpecific>
        <Choice Filter="isWML11" NavigateUrlKey="WmlTargetUrl" 
            ImageKey= "WmlImageSrc" />
    </DeviceSpecific>
</mobile:AdRotator>
<!-- The AdRotator control -->
<mobile:AdRotator id="AdControl" runat="server"
    ImageKey="MobileImgSrc" NavigateUrlKey="TargetUrl"
    AdvertisementFile="App_Data/ads.xml" Alignment="Left" 
    KeywordFilter="Developer" OnAdCreated="AdCreated_Event">
    <DeviceSpecific>
        <Choice Filter="isWML11" NavigateUrlKey="WmlTargetUrl" 
            ImageKey= "WmlImageSrc" />
    </DeviceSpecific>
</mobile:AdRotator>

備註

您可以使用 <Choice> 元素覆寫此設定,以顯示廣告的替代 URL。

適用於

另請參閱