📄 delczy_deal.asp
字号:
<!--#include file="../conn/conn.asp"-->
<%
qID=request.QueryString("id")
if qID<>"" then
response.Write("<script language='javascript'>if(!confirm('真的要删除该操作员吗?')){window.location.href='delczy.asp';}</script>")
on error resume next
sql="delete from userlist where id='"&qID&"'"
conn.execute(sql)
if err<>0 then
response.Write("<script language='javascript'>alert('操作员信息删除失败!');window.location.href='delczy.asp';</script>")
else
response.Write("<script language='javascript'>alert('操作员信息删除成功!');window.location.href='delczy.asp';</script>")
end if
else
response.Write("<script language='javascript'>window.location.href='delczy.asp';</script>")
end if
%>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
</head>
<body>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -