共享网址 |
| 提示:暂无收藏纪录,点击“添加网址”新增记录 | <%End if%>
<%
if page <>1 then
Response.Write "首页 "
end if
tmppage = page - 1
if tmppage <= 0 then
tmppage = 1
else
Response.Write"上一页"
end if
tmppage = page + 1
if tmppage >rs.PageCount then
tmppage = page
else
Response.Write " 下一页 "
end if
if Cstr(page) <> Cstr(rs.PageCount) and Cstr(rs.PageCount) <> 0 then
Response.Write "尾页"
end if
Response.Write " "&rs.RecordCount&" 条记录 "
if Cstr(rs.PageCount) <> 0 then
Response.Write "" & page & " / "&rs.PageCount&"页"
end if
rs.close
set rst=nothing
conn.close
set conn=nothing
%>