<%
if request("userid123")="" then
sql="select * from users order by id desc"
else
sql="select * from users where question='"&request("userid123")&"'"
end if
Set rs= Server.CreateObject("ADODB.Recordset")
rs.open sql,conn,1,1
if rs.eof and rs.bof then
response.write "<p align='center'>你数据不存</p>"
else
totalPut=rs.recordcount
totalPut=rs.recordcount
if currentpage<1 then
currentpage=1
end if
if (currentpage-1)*MaxPerPage>totalput then
if (totalPut mod MaxPerPage)=0 then
currentpage= totalPut \ MaxPerPage
else
currentpage= totalPut \ MaxPerPage + 1
end if
end if
if currentPage=1 then
showpage totalput,MaxPerPage,"Teachers.asp"
showContent
showpage totalput,MaxPerPage,"Teachers.asp"
else
if (currentPage-1)*MaxPerPage<totalPut then
rs.move (currentPage-1)*MaxPerPage
dim bookmark
bookmark=rs.bookmark
showpage totalput,MaxPerPage,"Teachers.asp"
showContent
showpage totalput,MaxPerPage,"Teachers.asp"
else
currentPage=1
showpage totalput,MaxPerPage,"Teachers.asp"
showContent
showpage totalput,MaxPerPage,"Teachers.asp"
end if
end if
end if
sub showContent
dim i
i=0
%>
<div align="center">
<table border="1" borderColor="#000000" cellPadding="0"
style="border-collapse: collapse; border-bottom: medium none" width="50%" cellspacing="1">
<tr>
<td align="center">用户</a></td>
<td align="center" bgcolor="#FF9933">姓名</a></td>
</tr>
<%do while not rs.eof%>
<tr>
<td align="center"><%=rs("userid")%></td>
<td align="center" bgcolor="#FF9933"><%=rs("question")%></td>
</tr>
<% i=i+1
if i>=MaxPerPage then exit do
rs.movenext
loop
%>
</TD></TR></TABLE>
</div>
<%
end sub
function showpage(totalnumber,maxperpage,filename)
dim n
if totalnumber mod maxperpage=0 then
n= totalnumber \ maxperpage
else
n= totalnumber \ maxperpage+1
end if
response.write "<p align=""center""><form method=Post action="&filename&"?typeid="&typeid&">"
if CurrentPage<2 then
response.write "<font color='#000080'>首页 上一页</font> "
else
response.write "<a href="&filename&"?page=1&typeid="&typeid&">首页</a> "
response.write "<a href="&filename&"?page="&CurrentPage-1&"&typeid="&typeid&">上一页</a> "
end if
if n-currentpage<1 then
response.write "<font color='#000080'>下一页 尾页</font>"
else
response.write "<a href="&filename&"?page="&(CurrentPage+1)&"&typeid="&typeid&">"
response.write "下一页</a> <a href="&filename&"?page="&n&"&typeid="&typeid&">尾页</a>"
end if
response.write "<font color='#000080'> 页次:</font><strong><font color=red>"&CurrentPage&"</font><font
color='#000080'>/"&n&"</strong>页</font> "
response.write "<font color='#000080'> 共<font color=red><b>"&totalnumber&"</b></font>个 <b>用
户"&maxperpage&"</b>个/每页</font> "
response.write " <font color='#000080'>转到:</font><input type='text' name='page' size=4 maxlength=10 class=smallInput
value="¤tpage&">"
response.write " <input class=buttonface type='submit' value='Goto' name='cndok'></span></p></form></p>"
end function
rs.close
set rs=nothing
conn.close
set conn=nothing
%>
</BODY></HTML>