📄 delshortcut.asp
字号:
<%Option Explicit%>
<!--#include file=adoconn.asp-->
<%
dim sql
dim sortid
dim IsErr
sortid = Request.QueryString("sortid")
IsErr = 0
if sortid = "" or Trim(sortid) = "" then
IsErr = 1
else
sql = "delete * from shortcut where sortid = " & sortid
objConn.Execute(sql)
end if
objConn.Close()
Set objConn = nothing
if IsErr = 1 then
Response.Write("<script language=""JavaScript"">alert(""意外参数错误!"");history.go(-1)</script>")
else
Response.Write("<script language=""JavaScript"">location.replace(""admsort1.asp"")</script>")
end if
%>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -