📄 edmin_del.asp
字号:
<% @LANGUAGE="VBSCRIPT" CODEPAGE="65001" %>
<%
'=================================================
' Copyright 2007-05 jinqiu. All Rights Reserved.
' Last Update: 2007-05-15 HTTP://www.wapfs.net
'=================================================
%>
<%
if session("admin")="" then
response.redirect "admin.asp"
else
if session("flag")>1 then
response.write "<br/><p align='center'>您没有操作的权限</p>"
response.end
end if
end if
%>
<%Response.ContentType = "text/vnd.wap.wml; charset=utf-8"%>
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE wml PUBLIC "-//WAPFORUM//DTD WML 1.1//EN" "http://www.wapforum.org/DTD/wml_1.1.xml">
<!-- #include file="conn.asp" -->
<wml>
<head>
<meta http-equiv='Cache-Control' content='no-Cache'/>
<meta http-equiv='Cache-Control' content='max-age=0'/>
</head>
<card id='main' title='用户管理' >
<% set rs3=server.createobject("adodb.recordset")
sql3="select * from admin where id="&request("id")
rs3.open sql3,conn,3,3
%>
<p>
删除管理员
<br/>------------
<br/>真的要删除<%=trim(rs3("username"))%>
<br/><anchor>[-确认-]
<go href='edmin_save.asp' method='post'>
<postfield name='id' value='<%=rs3("id")%>'/>
<postfield name='types' value='del'/>
</go>
</anchor>
<br/><a href='edmin.asp'>[-取消-]</a></p>
<%
rs3.close
set rs3=nothing
conn.close
set conn=nothing
%>
</card>
</wml>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -