Ads.Asp
上传用户:qfkgdy
上传日期:2020-06-18
资源大小:1888k
文件大小:1k
源码类别:

手机WAP编程

开发平台:

ASP/ASPX

  1. <%
  2. Public Sub ads(ByVal ids)
  3. set rs=conn.execute("select top 1 * from [Ad_Location] WHERE id=" & ids & "")
  4. if not rs.eof then
  5. Locations=rs("Locations")
  6. Show_Amount=rs("Show_Amount")
  7. Show1=rs("Show")
  8. Randoms=rs("Randoms")
  9. if Randoms=1 then
  10. newids="newid()"
  11. else
  12. newids="id"
  13. end if
  14. if Show1=1 then
  15. set rs1=conn.execute("select top " & Show_Amount & " * from [ad] WHERE Locations=" & ids & " and Show=1 order by " & newids & "")
  16. do while not rs1.eof
  17. call wmllink("Ad.Asp?id=" & rs1("id") & "","" & wap.filter("wml",rs1("Title")) & "",true)
  18. rs1.movenext
  19. loop
  20. 'Closers1()
  21. end if
  22. end if
  23. Closers()
  24. End Sub
  25. %>