ASP AdRotator 组件
每当用户进入网站或刷新页面时,ASP AdRotator组件就会创建一个AdRotator对象来显示一幅不同的图片。
语法:
以下为引用的内容: <% set adrotator=server.createobject("MSWC.AdRotator") adrotator.GetAdvertisement("textfile.txt") %> |
实例
假设我们有一个文件名为"banners.asp"。它类似于这样:
以下为引用的内容: <% set adrotator=Server.CreateObject("MSWC.AdRotator") response.write(adrotator.GetAdvertisement("ads.txt")) %> |
文件"ads.txt"类似这样:
以下为引用的内容: * webjxcom.gif http://www.webjx.com/ Visit Webjx.Com 80 microsoft.gif http://www.microsoft.com/ Visit Microsoft 20 |
"ads.txt"文件中星号下面的代码定义了如何显示这些图像,链接地址,图像的替换文本,在每百次点击中的现实几率。我们可以看到,W3School图片的显示几率是80%,而Microsoft图片的显示几率是20%。
注释:为了使这些链接在用户点击时可以正常工作,我们需要对文件"ads.txt"进行一点点小小的修改:
以下为引用的内容: REDIRECT banners.asp * webjxcom.gif http://www.webjx.com/ Visit Webjx.Com 80 microsoft.gif http://www.microsoft.com/ Visit Microsoft 20 |
转向页面会接收到名为url的变量的查询字符串,其中含有供转向的URL。
注释:如需规定图像的高度、宽度和边框,我们可以在REDIRECT下面插入这些代码:
以下为引用的内容: REDIRECT banners.asp WIDTH 468 HEIGHT 60 BORDER 0 * webjxcom.gif ... ... |
最后要做的是把这些代码加入文件"banners.asp"中:
以下为引用的内容: <% <% set adrotator=Server.CreateObject("MSWC.AdRotator") response.write(adrotator.GetAdvertisement("textfile.txt")) %> |
关键字词: