📄 index.asp
字号:
<!--#include file="conn.asp"-->
<%
if session("chat_admin")<>"yes" then
response.redirect "login.asp"
response.end
else
usernum=0
Conn = DBCN()
set rs = Server.CreateObject("ADODB.Recordset")
sql="select count(*) from [user]"
rs.open sql,conn,3
usernum=rs(0)
rs.close
%>
<html>
<head>
<meta http-equiv="Content-Language" content="zh-cn">
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>JChat注册用户管理</title>
<style type="text/css">
<!--
.p9 {font-size: 10pt; line-height: 14pt }
-->
</style>
</head>
<body topmargin="3" leftmargin="3">
<table border="0" width="100%" bgcolor="#C8C9D2">
<tr>
<td width="52%"><strong>JChat注册用户管理面板</strong></td>
<td width="48%">
<p align="right" class="p9"><a href="logout.asp"><font color=red>退出系统</font></a> <a href="http://www.easyfad.com">技术支持</a> <a href="http://www.jchat.com.cn">关于JChat</a></td>
</tr>
</table>
<table border="0" width="100%" height="90%" bgcolor="#E7E7EB">
<tr>
<td width="100%" class="p9" valign="top"><br>
你好,欢迎使用<font color="#FF0000">JChat 注册用户管理系统</font>。<br>
系统当前的时间是:<font color="#FF0000"><%=now()%></font>
系统当前的注册用户总数是:<font color="#FF0000"><%=usernum%></font> 人。<br><br>
<p class="p9"><strong>1.查询并修改用户资料</strong></p>
<form method="POST" action="userlist.asp">
<table border="0" width="85%" cellspacing="0" cellpadding="0" align="center">
<tr>
<td width="100%" bgcolor="#D6EBEB" class="p9">名字包含有<input type="text" name="quname" size="17" value="">
and 经验值 <select name="qstate" size="1">
<option value="0">>=</option>
<option value="1"><=</option>
</select> <input type="text" name="qexperi" size="10" value=""> <input
type="submit" value=" GO "> </td>
</tr>
</table>
</form>
<br>
<p class="p9"><strong>2.查询并删除过期注册用户</strong></p>
<form method="POST" action="delolduser.asp">
<table border="0" width="85%" cellspacing="0" cellpadding="0" align="center">
<tr>
<td width="100%" bgcolor="#D6EBEB" class="p9">最后登录时间在今天的<input type="text" name="olddate" size="5" value="40">
天以前的所有用户 <input type="submit" value=" GO "> </td>
</tr>
</table>
</form>
<br>
<p class="p9"><strong>3.<a href="setting.asp">系统其他的一些设置</a></strong>(包括广告,脏话过滤,私人头像等)</p>
<p class="p9"><strong>4.<a href="setpassword.asp">修改管理员帐号和密码</a></strong></p>
</td>
</tr>
</table>
<table border="0" width="100%" bgcolor="#C8C9D2">
<tr>
<td width="100%" class="p9">
<p align="right">版本:<font color="#FF0000">JChat V3.6.2</font> </p>
</td>
</tr>
</table>
</body>
</html>
<%
end if
%>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -