complaindelt.asp

来自「A Design and Implementation of The Onli」· ASP 代码 · 共 21 行

ASP
21
字号
<!--#include file="../conndb.asp"-->
<!--#include file="isAdmin.asp"-->
<html>
<head>
<title>客户投诉删除</title>
</head>
<body>
<%
 Dim id
 id = Request.QueryString("id")
 sql = "Delete From Complain Where id in ("&id &")"
 '执行数据库操作
 Conn.Execute(sql) 
 Response.Write "<h3>客户投诉已经删除</h3>"
%>
</body>
<script language="javascript">
  location.href = "Complain.asp?flag=1";
</script>
</html>

⌨️ 快捷键说明

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