设为首页收藏本站

新微赢技术网

 找回密码
 注册
搜索
热搜: 回贴
查看: 62|回复: 4
打印 上一主题 下一主题

请教一个ASP分页问题?

[复制链接]
跳转到指定楼层
1#
发表于 2010-1-9 03:50:50 | 只看该作者 回帖奖励 |倒序浏览 |阅读模式
一直以来我的分页模式都是:“ 首页 上一页 下一页 尾页 ”
现在网络上很多分页都比较多采用“上一页 1 2 3 4 5 6 7 8 下一页”这个模式
请问第二种模式 是怎么现实的 ?
2#
发表于 2010-1-9 03:50:54 | 只看该作者
<%sql="select * from news order by news_no desc"
set rs = Server.CreateObject("ADODB.Recordset")
rs.open sql,conn,3,3
If IsNumeric(Request("Page"))=false Or Request("Page")="" Then
                Page=1
            Else
                Page=CInt(Request("Page"))
            End if        
            Rs.PageSize=3   
            If Rs.EOF Or Rs.BOF Then
                Response.Write "目前还没有产品!"&"<br>"
                      Else
                myPageSize=Rs.PageSize
                      Rs.AbsolutePage=Page

%>   
<table>
<%Do While not Rs.Eof And myPageSize>0%>  
<tr><td width=600>                   </td></tr>
<%    myPageSize=myPageSize-1
            i=i+1
            Rs.MoveNext
            Loop
      %>
</table>
<%end if%>
产品总数:<%=Rs.RecordCount%>个;每页显示:<%=Rs.PageSize%>个;第<%=Page%>页/共<%=Rs.PageCount%>页.            
<%               
If Page > 1 Then
Response.Write "<a href='product.asp?Page=1' title='首页'><font face=webdings>" & 9 & "</font></a>"
Response.Write "&nbsp;<a href='product.asp?Page="&Page-1&"' title='上一页'><font face=webdings>" & 7 & "</font></a>"
End If
For j = 1 To Rs.PageCount         
Response.Write "&nbsp;<a href='product.asp?Page="&j&"'>" & j & "</a>"   
Next
If Page < Rs.PageCount Then
Response.Write "&nbsp;<a href='product.asp?Page="&Page+1&"' title='下一页'><font face=webdings>" & "8" & "</a></font>"
End If
Response.Write "&nbsp;<a href='product.asp?Page="&Rs.PageCount&"' title='尾页'><font face=webdings>:</a>"
%>
<%
Rs.Close
Set Rs=nothing
%>
回复 支持 反对

使用道具 举报

3#
发表于 2010-1-9 03:50:58 | 只看该作者
http://bbs.bc-cn.net/viewthread. ... p%3Bfilter%3Ddigest
这个程序楼主看了吗?
上一页 1 2 3 4 5 6 7 8 下一页
其实这个原理就是对页码再进行二次分页。
回复 支持 反对

使用道具 举报

4#
发表于 2010-1-9 20:05:06 | 只看该作者
不要见一个爱一个,爱的太多,你的爱就要贬值。
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 注册

本版积分规则

申请友链|小黑屋|最新主题|手机版|新微赢技术网 ( 苏ICP备08020429号 )  

GMT+8, 2024-11-20 00:24 , Processed in 0.100329 second(s), 9 queries , Gzip On, Memcache On.

Powered by xuexi

© 2001-2013 HaiAn.Com.Cn Inc. 寰耽

快速回复 返回顶部 返回列表