1.新建项目名称AdRotator
2.右键项目名称添加一个xml文件命名为AdRotator.xml
images/1.jpg http://www.Microsoft.com 图像不用时显示的文本 可用于筛选特定的广告的广告类别 1000 200 1000 images/2.jpg http://www.asp.net 图像不用时显示的文本 可用于筛选特定的广告的广告类别 300 200 1000
4.在页面中拖一个AdRotator控件,并设置他的属性
AD Rotator控件的所有属性都是可选的。一般来说,XML文件中可以包含下列属性:
1、ImageUrl:要显示的图像的URL。
2、NavigateUrl:单击AD Rotator控件要转到的网页的URL。
3、AlternateText:图像不可用时显示的文本。
4、Keyword:可用于筛选特定的广告的广告类别。
5、Impressions:一个指示广告的可能显示频率的数值(加权数)。在XML文件中,所有Impressions值的总和不能超过2,048,000,000-1。
6、Height:广告的高度。 不选择高度宽度,默认显示图片的大小
7、Width:广告的宽度。
4.
Default.aspx
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="Default.aspx.cs" Inherits="AdRotatorDemo._Default" %>AdRotator 控件使用示例
Default.aspx.cs
using System;using System.Collections.Generic;using System.Web;using System.Web.UI;using System.Web.UI.WebControls;using System.Xml;namespace AdRotatorDemo{ public partial class _Default : System.Web.UI.Page { protected void Page_Load(object sender, EventArgs e) { } protected void AdRotator1_AdCreated(object sender, AdCreatedEventArgs e) { Response.Write("名称:" + e.AlternateText + "\n5秒后自动刷新"); } }}