class-del.asp

来自「西亚电子购物系统」· ASP 代码 · 共 19 行

ASP
19
字号
<!--#include file="../manage/check-4.asp"-->
<!--#include file="../conn/conn.asp" -->
<% 
Select case Request("action")
	case "lbdel"
	    id = Request("id")
		conn.execute("Delete * from sia_category where clid = " & id)
		conn.execute("Delete * from sia_class where clid = " & id)
		conn.execute("Delete * from sia_product where clid = " & id)
		Response.write "<script>alert(""删除成功"");location.href=""class.asp"";</script>"
		Response.End
	case "sia_classdel"
		id = Request("id")
		conn.execute("Delete * from sia_class where claid = " & id)
		conn.execute("Delete * from sia_product where claid = " & id)
		Response.write "<script>alert(""删除成功"");location.href=""class.asp"";</script>"
		Response.End
End Select
%>

⌨️ 快捷键说明

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