次の方法で共有


方法 : AdRotator Web サーバー コントロールでプログラムによって広告を選択する

更新 : 2007 年 11 月

AdRotator Web サーバー コントロールを使用すると、AdCreated イベント ハンドラ内にカスタム ロジックを作成して動的に広告を選択できます。

AdCreated イベントで広告を選択するには

  1. AdRotator コントロールの AdCreated イベント ハンドラを作成します。

    ハンドラで渡される第 2 パラメータには、作成する広告への参照が格納されます。

  2. 広告オブジェクトのプロパティ設定で、表示する広告のイメージとナビゲーション URL を指定します。

    AdCreatedEventArgs コントロールの ImageUrl プロパティ、href プロパティ、および AlternateText プロパティを設定する方法を次の例に示します。

    Public Sub AdRotator1_AdCreated(ByVal sender As Object, _
            ByVal e As System.Web.UI.WebControls.AdCreatedEventArgs) _
            Handles AdRotator1.AdCreated
        e.ImageUrl = "images/contoso_ad.gif"
        e.href = "http://www.contoso-ltd.com/"
        e.AlternateText = "Ad for Contoso, Ltd. Web site"
    End Sub
    
    protected void AdRotator1_AdCreated (object sender,
       System.Web.UI.WebControls.AdCreatedEventArgs e)
    {
       e.ImageUrl = "images/contoso_ad.gif";
       e.href = "http://www.contoso-ltd.com/";
       e.AlternateText = "Ad for Contoso, Ltd Web site";
    }
    

参照

参照

AdRotator Web サーバー コントロールの概要