📄 admin.asp
字号:
<%@LANGUAGE="VBSCRIPT" CODEPAGE="65001"%>
<%Response.CodePage=65001%>
<%Response.Charset="UTF-8"%>
<!--#include file="getHeader.asp"-->
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE html PUBLIC "-//WAPFORUM//DTD XHTML Mobile 1.0//EN" "http://www.wapforum.org/DTD/xhtml-mobile10.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<!--#include file="adminCheck.asp"-->
<!--#include file="db_conn_admin.asp"-->
<head>
<title> 管理员设置 </title>
<meta name="Author" content="微普科技http://www.wiipu.com"/>
<meta http-equiv="Content-Type" content="<%=header%>; charset=utf-8" />
<link rel="stylesheet" href="admin.css" type="text/css"/>
</head>
<body>
<h2>管理员列表</h2>
<ol>
<%
Dim sqlStr
sqlStr="select * from WP_admin"
set rs = server.createobject("ADODB.RecordSet")
rs.open sqlStr,conn,1,1
do while not rs.eof
response.write "<li>"&rs("admin_account")
If rs("admin_account")<>session("admin") then response.write " [<a href='adminDel_do.asp?ac="&rs("admin_account")&"'>删</a>]"
response.write "</li>"
rs.movenext
Loop
rs.close
Set rs=Nothing
Set conn=nothing
%>
</ol>
<p>[<a href="adminAdd.asp">添加管理员</a>]</p>
<hr/>
【<a href="main.asp">返回主菜单</a>】<br/>
<br/>
Copyright(c)WiiPu微普科技
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -