codecamp

ASP.NET AdRotator AdvertisementFile 属性

ASP.NET AdRotator AdvertisementFile 属性


AdRotator 控件 AdRotator 控件

定义和用法

AdvertisementFile 属性用于设置或返回包含广告数据的 XML 文件的路径。

语法

<asp:AdRotator AdvertisementFile="path" runat="server" />

属性 描述
path 字符串值,规定包含广告数据的 XML 文件的位置。

可能的值:

  • 绝对路径(比如 //www.w3cschool.cn/ads/bigad.xml)
  • 虚拟根路径(比如 ~/ads/bigad.xml)
  • 相对路径(比如 /ads/bigad.xml)


实例

实例

声明一个 AdRotator(在"尝试一下"实例中查看 XML 文件):

<form runat="server">
<asp:AdRotator id="ad1" runat="server"
AdvertisementFile="Ad1.xml" />
</form>

演示实例 »


AdRotator 控件 AdRotator 控件
温馨提示
下载编程狮App,免费阅读超1000+编程语言教程
取消
确定
目录

关闭

MIP.setData({ 'pageTheme' : getCookie('pageTheme') || {'day':true, 'night':false}, 'pageFontSize' : getCookie('pageFontSize') || 20 }); MIP.watch('pageTheme', function(newValue){ setCookie('pageTheme', JSON.stringify(newValue)) }); MIP.watch('pageFontSize', function(newValue){ setCookie('pageFontSize', newValue) }); function setCookie(name, value){ var days = 1; var exp = new Date(); exp.setTime(exp.getTime() + days*24*60*60*1000); document.cookie = name + '=' + value + ';expires=' + exp.toUTCString(); } function getCookie(name){ var reg = new RegExp('(^| )' + name + '=([^;]*)(;|$)'); return document.cookie.match(reg) ? JSON.parse(document.cookie.match(reg)[2]) : null; }