banner.asp
资源名称:1.rar [点击查看]
上传用户:ziqing_518
上传日期:2022-08-09
资源大小:446k
文件大小:1k
源码类别:
多媒体编程
开发平台:
ASP/ASPX
- <!--#include file="db/user.asp" -->
- <!--#include file="config.asp" -->
- <%
- set rs=conn.execute("select * from ad where id="& int(Request.QueryString("id")))
- if rs("numPlace")<>"9" then
- if rs("numMaxRate")<>"0" then
- if CDbl(rs("numSelect"))/CDbl(rs("numShow"))>=CDbl(rs("numMaxRate")) then
- response.write("该广告超过点击次数,请过段时间再试")
- response.end
- end if
- end if
- conn.execute("update ad set numSelect=numSelect+1 where id="& int(Request.QueryString("id")))
- end if
- Response.Redirect rs("strADurl")
- %>