ASP.NETノートの広告コントロールの使い方
2937 ワード
広告コントロールの使用方法:
広告ファイルはXMLファイルで、広告ファイル内のすべてのラベル属性が分析されadProperties辞書に保存され、属性編集に使用されます.
ads.xml
adRotator.aspx.cs
adRotator.aspx
1、再構築メニュー:抽出方法(Ctrl+R,Ctrl+M)パッケージングフィールド(Ctrl+R,Ctrl+F)
2、辞書のキーワードはAnimalで、この値は文字列に変換され、
(string).AdProperties["Aniaml"]
広告ファイルはXMLファイルで、広告ファイル内のすべてのラベル属性が分析されadProperties辞書に保存され、属性編集に使用されます.
ads.xml
4rwbgzby.gif
//www.jb51.net
Text_01
one
40
I'm using adRotator No.1
banner.jpg
//www.jb51.net
Text_02
two
40
I'm using adRotator No.2
cvtxlkw4.gif
//www.jb51.net
Text_03
three
30
I'm using adRotator No.3
adRotator.aspx.cs
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
public partial class myTest_advertisement : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
}
protected void ad_Created(object sender, AdCreatedEventArgs e)
{
if ((string)e.AdProperties["Animal"] != "")
Label1.Text = (string)e.AdProperties["Aniaml"];
else
Label1.Text = "n.a.";
}
}
adRotator.aspx
Using adRotator
1、再構築メニュー:抽出方法(Ctrl+R,Ctrl+M)パッケージングフィールド(Ctrl+R,Ctrl+F)
2、辞書のキーワードはAnimalで、この値は文字列に変換され、
(string).AdProperties["Aniaml"]