支持权重的无组件ASP广告显示代码

所属分类: 网络编程 / ASP编程 阅读数: 1076
收藏 0 赞 0 分享
网站同一显示很多广告?需要不同权重?简单的20行代码。 


  
复制代码 代码如下:

Dim cc_fv_ad_468_80_code,cc_fv_ad_power,cc_fv_ad_i 
  '广告权重显示 明月星光 Copyright http://www.5iya.com/blog 原创 
  cc_fv_ad_power = Array(1,3,2,4) '设置每个广告权重 
  Redim cc_fv_ad_ubound(Ubound(cc_fv_ad_power)) 
  cc_fv_ad_ubound(0) = cc_fv_ad_power(0) 
  For cc_fv_ad_i = 1 To Ubound(cc_fv_ad_power) 
    cc_fv_ad_ubound(cc_fv_ad_i) = cc_fv_ad_ubound(cc_fv_ad_i-1)+cc_fv_ad_power(cc_fv_ad_i) 
  Next 
  Randomize 
  Dim cc_fv_ad_j,cc_fv_ad_random,cc_fv_ad_number 
  cc_fv_ad_number = 1 
  cc_fv_ad_random = Int(Rnd*cc_fv_ad_ubound(Ubound(cc_fv_ad_power)))+1 
  For cc_fv_ad_j = 0 To Ubound(cc_fv_ad_power) 
    If cc_fv_ad_random <= cc_fv_ad_ubound(cc_fv_ad_j) Then 
      cc_fv_ad_number = cc_fv_ad_j 
      Exit For 
    End If 
  Next 
  '广告代码 
  cc_fv_ad_468_80_code = Array("<iframe width=""468"" height=""60"" align=""center"" marginwidht=""0"" name=""union163com"" marginheight=""0"" hspace=""0"" vspace=""0"" frameborder=""0"" scrolling=""no"" src=""http://news2.163.com/product/photo/tpl1.jsp?ID=yibaoxiang&NO=21688&productid=0422""></iframe>","<script type=""text/javascript"" src=""http://www.joyo.com/lianmeng/ad.asp?s=cg5iyacom&k=1""></script>","http://www.5iya.com/blog","<script language=""JavaScript1.1"" src=""http://smarttrade.allyes.com/main/adfshow?user=1|8033|103810&db=smarttrade&border=0&local=yes&js=ie""></script>") 
  Response.Write cc_fv_ad_468_80_code(cc_fv_ad_number) 
更多精彩内容其他人还在看

ASP 指南

ASP 指南
收藏 0 赞 0 分享

改进 ASP 的字符串处理性能

改进 ASP 的字符串处理性能
收藏 0 赞 0 分享

pjblog2的参数第1/2页

pjblog2的参数
收藏 0 赞 0 分享

ASP智能搜索的实现

ASP智能搜索的实现
收藏 0 赞 0 分享

网站生成静态页面攻略2:数据采集

网站生成静态页面攻略2:数据采集
收藏 0 赞 0 分享

网站生成静态页面攻略3:防采集策略

网站生成静态页面攻略3:防采集策略
收藏 0 赞 0 分享

网站生成静态页面攻略4:防采集而不防搜索引擎策略

网站生成静态页面攻略4:防采集而不防搜索引擎策略
收藏 0 赞 0 分享

简单分页函数一 常用

简单分页函数一 常用
收藏 0 赞 0 分享

asp最常用的分页函数

asp最常用的分页函数
收藏 0 赞 0 分享

LINE9的目录浏览源程序

LINE9的目录浏览源程序
收藏 0 赞 0 分享
查看更多