完美的ASP分页脚本代码(3)

pgId = Request.QueryString("pageid") '当前页码 pgSize = 10 '每页大小 rsId = 0 Rs.Open Query,Conn,1,1 if PageinationRecordSet(Rs, pgId, pgSize, pgCount) then do while not Rs.Eof and rsId < pgSize rsId = rsId + 1 '列表内容 Rs.MoveNext loop end if Rs.Close '共 pgCount 页 response.write PageinationPageList(pgId, pgCount, "./list.asp?pageid={pg}") '输出分页代码

到此这篇关于完美的ASP分页脚本代码的文章就介绍到这了,更多相关ASP分页内容请搜索脚本之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持脚本之家!

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:http://www.heiqu.com/f613559eaef9077f2ccee256e9093c0a.html