delbuy01ji.asp

来自「千年免费电影系统 V3.1版 修正了V3.0版后台无法登陆的问题」· ASP 代码 · 共 31 行

ASP
31
字号

<!--#include file="articleconn.asp"-->
<!--#include file="security.asp"-->
<%if session("flag")>2 then
    response.write "<br><p align=center>您的操作权限不够!</p>"
    response.end
end if
%>

<%   
date01=Replace(request("date03"), "'", "''")
date02=Replace(request("date04"), "'", "''")
delid=Replace(request("delid"), "'", "''")
if date01="" and date02="" and delid="" then
   conn.execute "delete from buy WHERE baoyue=0 and now()-datetime >=2 and pay=0"
   conn.close
   set conn=nothing
   else if delid<>"" then
conn.execute "delete from buy WHERE baoyue=0 and giveme='在线支付' and pay=0"
   conn.close
   else if date01<>"" and date02<>"" then
    conn.execute "delete from buy WHERE baoyue=0 and pay=0 and datetime>='"&date01&"' and datetime<='"&date02&"' "
	  conn.close
   set conn=nothing
   end if
   end if
   end if

   response.redirect Request.ServerVariables("HTTP_REFERER")
%>

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?