admindelt.asp

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

ASP
19
字号
<!--#include File="../conndb.asp"-->
<!--#include file="isAdmin.asp"-->
<html>
<head>
<title>删除管理员信息</title>
</head>
<body>
<%
  Dim aid
  aid = Request.QueryString("aid")
  Conn.Execute("Delete From Admin Where AdminId='" & aid & "'")
  Response.Write "<h2>成功删除</h2>"
%>
</body>
<script language="javascript">
	opener.location.reload();
	setTimeout("window.close()",800);
</script>
</html>

⌨️ 快捷键说明

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