📄 complaindelt.asp
字号:
<!--#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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -