?? userdelt.asp
字號(hào):
<!-- #include file="ChkPwd.asp" -->
<!-- #include file="IsAdmin.asp" -->
<!--#include File="ConnDB.asp"-->
<html>
<head>
<title>刪除用戶信息</title>
</head>
<body>
<%
Dim uid
'讀取UserId參數(shù)
uid = Request.QueryString("UserId")
'Server對(duì)象的CreateObject方法建立Connection對(duì)象
'執(zhí)行DELETE語句,刪除指定用戶
Conn.Execute("DELETE FROM Users WHERE UserId=" & uid )
Response.Write "<h2>成功刪除</h2>"
%>
</body>
<script language="javascript">
opener.location.reload();
setTimeout("window.close()",1600);
</script>
</html>
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -