listok.asp
来自「聊天室源码呵呵你好用~~~~~~2.0版本」· ASP 代码 · 共 69 行
ASP
69 行
<%@ LANGUAGE=VBScript%>
<%Response.Expires=0
Server.ScriptTimeout=600
if Session("a_c_user_name")="" then
Response.write "<b>[操作失败]</b><p>您尚未登录(或已经超时退出),不能进行此操作!"
Response.end
end if
if Session("a_c_user_level")<10 then
Response.Write "<b>[操作失败]</b><p>您没有帐号列表的权限!"
Response.End
end if
input=Application("a_c_reg_data")
countud=Application("a_c_reg_num")
countudnum=(countud-4)/8%><html>
<head>
<title>帐号列表</title>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<style type='text/css'>
<!--
.p9 {line-height: 150%; font-size: 9pt;}
.p12 {line-height: 150%; font-size: 12pt;}
td {line-height: 200%; font-size: 9pt;}
body {line-height: 150%;font-size : 12pt;}
A {text-decoration: none;}
A:Hover {text-decoration : none;}
a:visited { color: #0000FF}
-->
</style>
</head>
<body bgcolor="FFFFFF">
<h1 align="center"><font color="0099FF"><a name="begin"></a>【帐号列表】</font></h1>
<hr noshade size="1" color=009900>
<p><b>[列出所有用户资料]</b> 共有注册名 <font color="FF0000"><b><%=countudnum%></b></font>
个 <a href="list.asp">【返回】</a>
<p>
<hr noshade size="1" color=009900>
<table width="100%" border="0" align="center">
<tr>
<td><font color="FF0000">序号</font></td>
<td><font color="FF0000">用户名</font></td>
<td><font color="FF0000">密码</font></td>
<td><font color="FF0000">等级</font></td>
<td><font color="FF0000">次数</font></td>
<td><font color="FF0000">经验</font></td>
<td><font color="FF0000">注册时间</font></td>
<td><font color="FF0000">最后时间</font></td>
<td><font color="FF0000">最后IP</font></td>
<td><font color="FF0000">删除</font></td>
</tr>
<%for i=5 to countud-1 step 8%><tr>
<td><%=(i+3)/8%></td>
<td><%=input(i)%></td>
<td><%=input(i+1)%></td>
<td><%=input(i+2)%></td>
<td><%=input(i+3)%></td>
<td><%=input(i+4)%></td>
<td><%=input(i+5)%></td>
<td><%=input(i+6)%></td>
<td><%=input(i+7)%></td>
<td><a href=listdel.asp?username=<%=Server.URLEncode(input(i))%>>删除</a></td>
</tr><%next%>
</table>
<div align="center">
<hr noshade size="1" color=009900>
<a href="#begin">返回页首</a></div>
<hr noshade size="1" color=009900>
<div align="center" class="p9"><script src="use.asp"></script> <script src="sn.asp"></script><br><script src="copyright.asp"></script></div>
</body>
</html>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?