deletepr.asp
来自「蓝芒3.0A最新所有功能完整破解版」· ASP 代码 · 共 51 行
ASP
51 行
<!--#include file="passinc.asp" -->
<%
if isadmin() = false then
response.redirect "noadmin.asp"
end if
%>
<%
dim pr
set pr = server.createobject("easymail.PendRegister")
pr.Load Application("em_SignWaitDays")
mdel = trim(Request("mdel"))
dim isedit
isedit = false
if mdel = "1" then
themax = pr.Count
do while themax >= 0
if trim(request("check" & themax)) <> "" then
md = trim(request("check" & themax))
if md <> "" then
pr.RemoveSign md
isedit = true
end if
end if
themax = themax - 1
loop
else
if trim(request("id")) <> "" then
md = trim(request("id"))
if md <> "" then
pr.RemoveSign md
isedit = true
end if
end if
end if
if isedit = true then
pr.Save
end if
set pr = nothing
response.redirect "pendreg.asp?" & getGRSN() & "&page=" & trim(request("thispage"))
%>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?