📄 del-leibie.asp
字号:
<!--#include file="../login/0.asp"-->
<!--#include file="../../conn/conn.asp" -->
<%
Select case Request("action")
case "lbdel"
id = Request("id")
Set s= Server.CreateObject("abodb.recordset")
conn.execute("Delete lb where lbid = " & id)
conn.execute("Delete xlb where lbid = " & id)
conn.execute("Delete slb where lbid = " & id)
Response.write "<script>alert(""删除成功"");location.href=""leibie.asp"";</script>"
Response.End
case "xlbdel"
id = Request("id")
Set s= Server.CreateObject("abodb.recordset")
conn.execute("Delete xlb where xlbid = " & id)
conn.execute("Delete slb where xlbid = " & id)
Response.write "<script>alert(""删除成功"");location.href=""leibie.asp"";</script>"
Response.End
case "slbdel"
id = Request("id")
Set s= Server.CreateObject("abodb.recordset")
conn.execute("Delete slb where slbid = " & id)
Response.write "<script>alert(""删除成功"");location.href=""leibie.asp"";</script>"
Response.End
End Select
%>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -