AdsClick.asp
资源名称:eat.rar [点击查看]
上传用户:jisenq
上传日期:2014-06-29
资源大小:7216k
文件大小:2k
源码类别:
数据库编程
开发平台:
ASP/ASPX
- <% Option Explicit %>
- <!--#include file="../FS_Inc/Const.asp" -->
- <!--#include file="../FS_Inc/Function.asp"-->
- <!--#include file="../FS_InterFace/MF_Function.asp" -->
- <!--#include file="../FS_InterFace/NS_Function.asp" -->
- <%
- 'Copyright (c) 2006 Foosun Inc. Code by 邓西
- response.buffer=true
- Response.CacheControl = "no-cache"
- Dim Conn,int_ID,o_Ad_Rs,AdTxtID,AdTxtRs,tempLinkUrl
- MF_Default_Conn
- int_ID=NoSqlHack(Request.QueryString("Location"))
- If int_ID="" or isnull(int_ID) Then
- AdTxtID=NoSqlHack(Request.QueryString("AdTxtID"))
- If AdTxtID<>"" Or Not IsNull(AdTxtID) Then
- AdTxtID=Clng(AdTxtID)
- Conn.execute("Update FS_AD_Info Set AdClickNum=AdClickNum+1 where AdID In(Select AdID From FS_AD_TxtInfo Where Ad_TxtID="&AdTxtID&")")
- Set AdTxtRs=Conn.execute("Select AdID,LinkUrl From FS_AD_TxtInfo Where Ad_TxtID="&AdTxtID)
- If Not AdTxtRs.EOf Then
- Conn.execute("Insert into FS_AD_Source(AdID,AdIPAdress,VisitTime) values("&AdTxtRs("AdID")&",'"&Request.ServerVariables("REMOTE_ADDR")&"','"&Now()&"')")
- tempLinkUrl=AdTxtRs("LinkUrl")
- Set AdTxtRs=Nothing
- Response.Redirect(tempLinkUrl)
- Else
- Set AdTxtRs=Nothing
- End If
- Else
- Response.write("参数错误")
- End If
- Else
- If Isnumeric(int_ID)=false then
- Response.write("参数错误")
- Else
- int_ID=Clng(int_ID)
- End if
- Set o_Ad_Rs=Conn.execute("Select AdLinkAdress From FS_AD_Info Where AdID="&int_ID&"")
- If Not o_Ad_Rs.Eof THen
- Conn.execute("Update FS_AD_Info Set AdClickNum=AdClickNum+1 where AdID="&int_ID&"")
- Conn.execute("Insert into FS_AD_Source(AdID,AdIPAdress,VisitTime) values("&int_ID&",'"&Request.ServerVariables("REMOTE_ADDR")&"','"&Now()&"')")
- Response.Redirect(o_Ad_Rs("AdLinkAdress"))
- Else
- Response.write("参数错误")
- End If
- Set ClickObj = Conn.Execute("select AdLinkAdress from FS_AD_Info where AdID="&int_ID&"")
- If Not ClickObj.eof then
- Response.Redirect(ClickObj("AdLinkAdress"))
- End if
- Set ClickObj=Nothing
- Set o_Ad_Rs=Nothing
- Set Conn=Nothing
- End if
- %><!-- Powered by: FoosunCMS4.0系列,Company:Foosun Inc. -->