banner.asp
资源名称:1.rar [点击查看]
上传用户:ziqing_518
上传日期:2022-08-09
资源大小:446k
文件大小:1k
源码类别:

多媒体编程

开发平台:

ASP/ASPX

  1. <!--#include file="db/user.asp" -->
  2. <!--#include file="config.asp" -->
  3. <%
  4. set rs=conn.execute("select * from ad where id="& int(Request.QueryString("id")))
  5. if rs("numPlace")<>"9" then
  6. if rs("numMaxRate")<>"0" then
  7. if CDbl(rs("numSelect"))/CDbl(rs("numShow"))>=CDbl(rs("numMaxRate")) then
  8. response.write("该广告超过点击次数,请过段时间再试")
  9. response.end
  10. end if
  11. end if
  12. conn.execute("update ad set numSelect=numSelect+1 where id="& int(Request.QueryString("id")))
  13. end if
  14. Response.Redirect rs("strADurl")
  15. %>