📄 list.asp
字号:
<!--#include file="conn.asp"-->
<%
if request("logout")<>"" then
session("auid")=""
session("apwd")=""
session("aleave")=""
response.redirect "index.asp"
end if
%>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<LINK href="style.css" rel=stylesheet>
<title>OWEN 活动管理系统</title>
</head>
<body>
<table width="760" border="1" align="center" cellpadding="0" cellspacing="0">
<tr width="100%" align="center" bgcolor="#FFFFFF">
<%
sql="select * from user order by id desc"
Set rs=Server.CreateObject("ADODB.RecordSet")
rs.Open sql,conn,1,1
if not rs.eof then
i=0
do while not rs.eof
i=i+1
%>
<td width="25%" height="24" bgcolor="#FFFFFF"><%=rs("auid") %></td>
<%
if (i mod 4)=0 and i>=3 then
%>
</tr>
<tr bgcolor="#FFFFFF" align="center">
<%
end if
rs.movenext
loop
else
end if
%>
</tr>
</table>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -