📄 student1.asp
字号:
<!--#include file="conn.asp"-->
<%
if session("user")="" then
response.write "您无此权限"
response.end
end if
%>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>更多查询</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<!--#include file="top.asp"--><p>
<%
set rs=server.createobject("adodb.recordset")
sql="select * from st_info where user_state='在读' order by out_time asc"
rs.open sql,conn,1,1
if Not(rs.bof and rs.eof) then'判别数据表中是否为空记录
NumRecord=rs.recordcount
rs.pagesize=14
NumPage=rs.Pagecount
if request("page")=empty then
NoncePage=1
elseif Cint(request("page"))<1 then
NoncePage=1
else
NoncePage=request("page")
if Cint(request("page"))>Cint(NumPage) then
NoncePage=NumPage
end if
end if
end if
%>
<div align="center">
<table border="1" width="350" bordercolorlight="#000000" cellspacing="0" cellpadding="5" bordercolordark="#FFFFFF">
<tr>
<td width="23%">学号</td>
<td width="25%">姓名</td>
<td width="25%">类型</td>
<td width="33%">毕业日期</td>
</tr>
<%
if not rs.eof then
rs.move (Cint(NoncePage)-1)*14,1
for i=1 to rs.pagesize
%>
<tr>
<td width="23%"><%=rs("user_number")%></td>
<td width="25%"><a href=xuefeiQuery.asp?id=<%=rs("id")%>&user_type=1><%=rs("user_name")%></a></td>
<td width="25%"><%=rs("user_type")%></td>
<td width="33%"><%if isnull(rs("out_time")) then%>未交费 <% else %> <%=rs("out_time")%> <%end if%></td>
</tr>
<%
rs.movenext
if rs.eof then
exit for
end if
next
else
%>
<tr>
<td width="50%" colspan="4"><marquee>暂无情况</marquee></td>
</tr>
<%
end if
rs.close
set rs=nothing
%>
</table><p>
</div>
<div align="center">
<input type="hidden" name="page" value="<%=NoncePage%>">
<%
if NoncePage>1 then
response.write "|<a href=student1.asp?page=1>首 页</a>| |<a href=student1.asp?page="&NoncePage-1&">上一页</a>| "
else
response.write "|首 页| |上一页| "
end if
if Cint(Trim(NoncePage))<Cint(Trim(NumPage)) then
response.write "|<a href=student1.asp?page="&NoncePage+1&">下一页</a>| |<a href=student1.asp?page="&NumPage&">尾 页</a>|"
else
response.write "|下一页| |尾 页|"
end if
%>
页次:<font color="#0033CC"><%=NoncePage%></font>/<font color="#0033CC"><%=NumPage%></font>
共<font color="#0033CC"><%=NumRecord%></font>条记录
</div>
<p><!--#include file="down.asp"-->
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -