自己看吧。
<%
Rs.pagesize=4
page=Request("page")
if (page-Rs.pagecount) >= 0 then
page=Rs.pagecount
elseif page = "" or page < 2 then
page = 1
end if
Rs.absolutepage=page
do while not Rs.eof
i = i + 1
if i > Rs.pagesize then
exit do
end if
%>
<tr>
<td width="50" height="1" rowspan="2">
</td> <td width="178" height="10"> <p align="right"> 共有<%=page%>/<%=Rs.pagecount%>页
跳到第<% for go=1 to Rs.pagecount%><a href=history.asp?page=<%=go%>><%=go%></a> <%next%>页
<%
if page<>1 then
%><a href=history_content.asp?page=<%=page-1%>>上一页</a>
<%
end if
%>
<%
if page<>rs.pagecount then
%><a href=history_content.asp?page=<%=page+1%>>下一页</a>
<%
end if
%></td>
</tr><%rs.close
set rs=nothing
conn.close
set conn=nothing
%>