⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 user_list.asp

📁 8款下载系统源代码 2003-3-11 21:37:45 433 949k · 都很常见: 猛虎山庄、燕衔泥(飞扬的软件第二版用的就是他
💻 ASP
字号:
<%
If request.cookies("admin")="" Then
Response.redirect"../"
End If
%>
<!--#include file="conn.asp"-->
<%
dim rs,sql
set rs=Server.CreateObject("Adodb.Recordset")
sql="select top 20 * from member order by id desc"
rs.open sql,conn,1,1
If rs.eof Then
response.write"no record"
response.end
End If
%>
<html>

<head>
<meta http-equiv="Content-Language" content="en-us">
<title>专业选票 | 管理员</title>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<meta name="GENERATOR" content="Microsoft FrontPage 4.0">
<meta name="ProgId" content="FrontPage.Editor.Document">
<style type="text/css">
<!---a:link      { color: #000080; font-family: Arial; text-decoration: underline }
a:visited    { color: #680090; font-family: Arial; text-decoration: underline }
a:active     { color: red; font-family: Arial; text-decoration: none }
a:hover      { color: red; text-decoration: none }
body         { color: #000000; font-size: 9pt; line-height: 12pt; font-family: Arial }
th           { font-size: 9pt; line-height: 14pt }
td           { font-size: 9pt; line-height: 14pt }
a.1:link     { font-family: Arial; text-decoration: none; color: black }
a.1:visited  { font-family: Arial; text-decoration: none; color: black }
a.1:active   { font-family: Arial; text-decoration: none; color: red }
a.1:hover    { font-family: Arial; text-decoration: none; color: red }
.line        { line-height: 10pt }
.il          { line-height: 12pt }
.form        { font-size: 9pt }
---></style>
</head>

<body topmargin="0" leftmargin="0">

<div align="center">
<center>
<table border="0" cellspacing="1" width="760" height="72">
<tr>
<td width="752" height="22" bgcolor="#F9F9F9" colspan="7">专业选票 管理员&nbsp; 
目前共有<%=rs.recordcount%>名会员</td>
</tr>
<tr>
<td width="41" height="11" bgcolor="#808080">
<p align="center"><font color="#FFFFFF">编号</font></td>
<td width="99" height="11" bgcolor="#808080">&nbsp;<font color="#FFFFFF"> 
会员登陆名</font></td>
<td width="82" height="11" bgcolor="#808080">
<p align="center"><font color="#FFFFFF">真实姓名</font></td>
<td width="35" height="11" bgcolor="#808080">
<p align="center"><font color="#FFFFFF">性别</font></td>
<td width="44" height="11" bgcolor="#808080">
<p align="center"><font color="#FFFFFF">OICQ</font></p>
</td>
<td width="281" height="11" bgcolor="#808080"> <font color="#FFFFFF">网站地址</font></td>
<td width="134" height="11" bgcolor="#808080"><font color="#FFFFFF">&nbsp;加入日期</font></td>
</tr>
</center>
<%do while not rs.eof%>
<tr>
<td width="41" height="1" bgcolor="#F9F9F9">
<p align="center"><%=rs("ID")%></td>
<center>
<td width="99" height="1" bgcolor="#F9F9F9">&nbsp;<a href="user_info.asp?uID=<%=rs("uID")%>" class="1"><%=rs("uID")%></a></td>
<td width="82" height="1" bgcolor="#F9F9F9">&nbsp;<a href="mailto:<%=rs("email")%>" class="1"><%=rs("rname")%></a></td>
<td width="35" height="1" bgcolor="#F9F9F9">
<p align="center"><%=rs("sex")%></td>
<td width="44" height="1" bgcolor="#F9F9F9">
<p align="center"><img src="http://icon.tencent.com/<%=rs("oicq")%>/s/" alt="<%=rs("oicq")%>" width="16" height="16"></p>
</td>
<td width="281" height="1" bgcolor="#F9F9F9">&nbsp;<a href="<%=rs("url")%>" class="1" target="_blank"><%=rs("url")%></a></td>
<td width="134" height="1" bgcolor="#F9F9F9">
<p align="center"><%=rs("date")%>-<%=rs("time")%></td>
</tr>
<%rs.movenext
loop
%>


<tr>
<td width="752" height="23" colspan="7" bgcolor="#808080"> </td>
</tr>
</table>
</center>
</div>

</body>

<%
rs.close
set rs=nothing
conn.close
set conn=nothing
%>

</html>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -