?? deluser.asp
字號:
<!--#include file="conn.asp"-->
<%
id=request.QueryString("id")
if id="" then
response.write("<script>alert('非法提交!');window.location.href('manageuser.asp')</script>")
response.end
end if
set rs=server.CreateObject("adodb.recordset")
cmd="select * from admin where id ="&id
rs.open cmd,conn,1,3
rs.delete
rs.update
response.write("<script>alert('刪除用戶成功!');window.location.href('manageuser.asp')</script>")
%>
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -