所以趁昨天有空自己写了一个分页的类,自我感觉良好(不要用鸡蛋砸我),在这里和大家分享一下自己的经验(谈不上经验,感想吧)。在这里我也不想说分页的原理了,反正大家都懂,要我往深入的谈我也不会。呵呵。
一、创建分页类的目标
在写之前,我曾想过,我究竟要写怎么样一个类,回想起以前写分页过程的时候,最烦的莫过于每次都要写哪一段复杂的分页代码,最大的烦恼每次都是仅仅几个变量名的不同。所以第一个要实现的就是要把这个封装起来,第二个就是要把分页的导航条也封装起来,第三个,不习惯哪些把数据显示部分也封装起来的方法,这不是方便编程,对与哪些对显示效果每次都不同的用户来说,比自己写分页还要麻烦。所以我的目地就是对recordset进行一些简单的封装。
二、创建过程
所以我写的第一个属性,就是返一个经过处理的recordse
set xd_rs=server.createobject("adodb.recordset")
xd_rs.pagesize=pagesize
xd_rs.open xd_sql,xd_conn,1,1
if not(xd_rs.eof and xd_rs.bof) then
if int_curpage>xd_rs.pagecount then
int_curpage=xd_rs.pagecount
end if
xd_rs.absolutepage=int_curpage
end if
set getrs=xd_rs
end property
这个属性的作用是更据指定recordset 的当前面,并到指针指向当前页的第一条记录,这个应该就是整个类的完成分页的核心了,当然,其中的一些参数是靠其它的属性来获取,所以这里顺便介绍一个这个类所要的基本参数
'getconn 得到数据库连接
'
'=============================================
public property let getconn(obj_conn)
set xd_conn=obj_conn
end property
'=============================================
'getsql 得到查询语句
'
'==============================================
public property let getsql(str_sql)
xd_sql=str_sql
end property
'===============================================
'pagesize 属性
'设置每一页的分页大小
'===============================================
public property let pagesize(int_pagesize)
if isnumeric(int_pagesize) then
xd_pagesize=clng(int_pagesize)
else
str_error=str_error & "pagesize的参数不正确"
showerror()
end if
end property
public property get pagesize
if xd_pagesize="" or (not(isnumeric(xd_pagesize))) then
pagesize=10
else
pagesize=xd_pagesize
end if
end property
一个参数就是当前页的获得,在程序中我用int_curpage来标识,这个的话放在类的创建过程中获得在好也没有了
'设定一些参数的黙认值
'========================
xd_pagesize=10 '设定分页的默认值为10
'========================
'获取当前面的值
'========================
if request("page")="" then
int_curpage=1
elseif not(isnumeric(request("page"))) then
int_curpage=1
elseif cint(trim(request("page")))<1 then
int_curpage=1
else
int_curpage=cint(trim(request("page")))
end if
end sub
9 3[1] [2] [3] [4] [5] [6] [7] [8] 4 :页次:1/8页 共51条记录 7条/每页
在页面里通过调用showpage()的方法显示出来,showpage可以在getrs以后的任意位置调用,也可以调用多次
dim str_tmp
int_totalrecord=xd_rs.recordcount
if int_totalrecord<=0 then
str_error=str_error & "总记录数为零,请输入数据"
call showerror()
end if
if int_totalrecord="" then
int_totalpage=1
else
if int_totalrecord mod pagesize =0 then
int_totalpage = clng(int_totalrecord / xd_pagesize * -1)*-1
else
int_totalpage = clng(int_totalrecord / xd_pagesize * -1)*-1+1
end if
end if
if int_curpage>int_totalpage then
int_curpage=int_totalpage
end if
'=====================================================
'显示分页信息,各个模块根据自己要求更改显求位置
'=====================================================
response.write "
str_tmp=showfirstprv '显示首页、前一页
response.write str_tmp
str_tmp=shownumbtn '数字导航
response.write str_tmp
str_tmp=shownextlast '下一页、末页
response.write str_tmp
str_tmp=showpageinfo
response.write str_tmp
response.write ""
end sub
到这里类的功能才算完整(为了节省版面,我有些方法没有放上去,再下面附上全部完整代码)写一个简单页面测试一下
'把分页类包含进来
set conn = server.createobject("adodb.connection")
conn.open "driver={microsoft access driver (*.mdb)};dbq=" & server.mappath("pages.mdb")
'#############类调用样例#################
'创建对象
set mypage=new xdownpage
'得到数据库连接
mypage.getconn=conn
'sql语句
mypage.getsql="select * from [test] order by id asc"
'设置每一页的记录条数据为5条
mypage.pagesize=5
'返回recordset
set rs=mypage.getrs()
'显示分页信息,这个方法可以,在set rs=mypage.getrs()以后,可在任意位置调用,可以调用多次
mypage.showpage()
'显示数据
response.write("
")
for i=1 to mypage.pagesize
'这里就可以自定义显示方式了
if not rs.eof then
response.write rs(0) & "
"
rs.movenext
else
exit for
end if
next
%>
效果还不错,该有的全有了。
分页过程中,还有一个比软麻烦的问题是,在带多个参数的url中,如保证在页面转向的时候不掉失其它参数。我靠一个geturl的过程来实现,并在生成导航时调用。
dim strurl,str_url,i,j,search_str,result_url
search_str="page="
strurl=request.servervariables("url")
strurl=split(strurl,"/")
i=ubound(strurl,1)
str_url=strurl(i)'得到当前页文件名
str_params=request.servervariables("query_string")
if str_params="" then
result_url=str_url & "?page="
else
if instrrev(str_params,search_str)=0 then
result_url=str_url & "?" & str_params &"&page="
else
j=instrrev(str_params,search_str)-2
if j=-1 then
result_url=str_url & "?page="
else
str_params=left(str_params,j)
result_url=str_url & "?" & str_params &"&page="
end if
end if
end if
geturl=result_url
end function
通过geturl的处理,可以自动的获取当前面的文件名,和所有带的参数,实现了页面转换页不丢失参数。
三、后记
通过这个分页类,解决了每次分页时需要重复写的分页部分代码,方便了编程,也使的提高了主要代码的可读性。也希望能给大家在编程过程中带来一点方便,由于本人水平有限,程序和文章中难免有错,还望大家批评指正。
附全部代码:
<%
'===================================================================
'xdownpage asp版本
'版本 1.00
'code by zykj2000
'email: zykj_2000@163.net
'bbs: http://bbs.513soft.net
'本程序可以免费使用、修改,希望我的程序能为您的工作带来方便
'但请保留以上请息
'
'程序特点
'本程序主要是对数据分页的部分进行了封装,而数据显示部份完全由用户自定义,
'支持url多个参数
'
'使用说明
'程序参数说明
'papgesize 定义分页每一页的记录数
'getrs 返回经过分页的recordset此属性只读
'getconn 得到数据库连接
'getsql 得到查询语句
'程序方法说明
'showpage 显示分页导航条,唯一的公用方法
'
'===================================================================
const btn_first="<font face=""webdings"">9</font>" '定义第一页按钮显示样式
const btn_prev="<font face=""webdings"">3</font>" '定义前一页按钮显示样式
const btn_next="<font face=""webdings"">4</font>" '定义下一页按钮显示样式
const btn_last="<font face=""webdings"">:</font>" '定义最后一页按钮显示样式
const xd_align="center" '定义分页信息对齐方式
const xd_width="100%" '定义分页信息框大小
class xdownpage
private xd_pagecount,xd_conn,xd_rs,xd_sql,xd_pagesize,str_errors,int_curpage,str_url,int_totalpage,int_totalrecord,xd_surl
'=================================================================
'pagesize 属性
'设置每一页的分页大小
'=================================================================
public property let pagesize(int_pagesize)
if isnumeric(int_pagesize) then
xd_pagesize=clng(int_pagesize)
else
str_error=str_error & "pagesize的参数不正确"
showerror()
end if
end property
public property get pagesize
if xd_pagesize="" or (not(isnumeric(xd_pagesize))) then
pagesize=10
else
pagesize=xd_pagesize
end if
end property
'=================================================================
'getrs 属性
'返回分页后的记录集
'=================================================================
public property get getrs()
set xd_rs=server.createobject("adodb.recordset")
xd_rs.pagesize=pagesize
xd_rs.open xd_sql,xd_conn,1,1
if not(xd_rs.eof and xd_rs.bof) then
if int_curpage>xd_rs.pagecount then
int_curpage=xd_rs.pagecount
end if
xd_rs.absolutepage=int_curpage
end if
set getrs=xd_rs
end property
'================================================================
'getconn 得到数据库连接
'
'================================================================
public property let getconn(obj_conn)
set xd_conn=obj_conn
end property
'================================================================
'getsql 得到查询语句
'
'================================================================
public property let getsql(str_sql)
xd_sql=str_sql
end property
'==================================================================
'class_initialize 类的初始化
'初始化当前页的值
'
'==================================================================
private sub class_initialize
'========================
'设定一些参数的黙认值
'========================
xd_pagesize=10 '设定分页的默认值为10
'========================
'获取当前面的值
'========================
if request("page")="" then
int_curpage=1
elseif not(isnumeric(request("page"))) then
int_curpage=1
elseif cint(trim(request("page")))<1 then
int_curpage=1
else
int_curpage=cint(trim(request("page")))
end if
end sub
'====================================================================
'showpage 创建分页导航条
'有首页、前一页、下一页、末页、还有数字导航
'
'====================================================================
public sub showpage()
dim str_tmp
xd_surl = geturl()
int_totalrecord=xd_rs.recordcount
if int_totalrecord<=0 then
str_error=str_error & "总记录数为零,请输入数据"
call showerror()
end if
if int_totalrecord="" then
int_totalpage=1
else
if int_totalrecord mod pagesize =0 then
int_totalpage = clng(int_totalrecord / xd_pagesize * -1)*-1
else
int_totalpage = clng(int_totalrecord / xd_pagesize * -1)*-1+1
end if
end if
if int_curpage>int_totalpage then
int_curpage=int_totalpage
end if
'==================================================================
'显示分页信息,各个模块根据自己要求更改显求位置
'==================================================================
response.write ""
str_tmp=showfirstprv
response.write str_tmp
str_tmp=shownumbtn
response.write str_tmp
str_tmp=shownextlast
response.write str_tmp
str_tmp=showpageinfo
response.write str_tmp
response.write ""
end sub
'====================================================================
'showfirstprv 显示首页、前一页
'
'
'====================================================================
private function showfirstprv()
dim str_tmp,int_prvpage
if int_curpage=1 then
str_tmp=btn_first&" "&btn_prev
else
int_prvpage=int_curpage-1
str_tmp="<a href="""&xd_surl & "1" & """>" & btn_first&"</a> <a href=""" & xd_surl & cstr(int_prvpage) & """>" & btn_prev&"</a>"
end if
showfirstprv=str_tmp
end function
'====================================================================
'shownextlast 下一页、末页
'
'
'====================================================================
private function shownextlast()
dim str_tmp,int_nextpage
if int_curpage>=int_totalpage then
str_tmp=btn_next & " " & btn_last
else
int_nextpage=int_curpage+1
str_tmp="<a href=""" & xd_surl & cstr(int_nextpage) & """>" & btn_next&"</a> <a href="""& xd_surl & cstr(int_totalpage) & """>" & btn_last&"</a>"
end if
shownextlast=str_tmp
end function
'====================================================================
'shownumbtn 数字导航
'
'
'====================================================================
private function shownumbtn()
dim i,str_tmp
for i=1 to int_totalpage
str_tmp=str_tmp & "[<a href=""" & xd_surl & cstr(i) & """>"&i&"</a>] "
next
shownumbtn=str_tmp
end function
'====================================================================
'showpageinfo 分页信息
'更据要求自行修改
'
'====================================================================
private function showpageinfo()
dim str_tmp
str_tmp="页次:"&int_curpage&"/"&int_totalpage&"页 共"&int_totalrecord&"条记录 "&xd_pagesize&"条/每页"
showpageinfo=str_tmp
end function
'==================================================================
'geturl 得到当前的url
'更据url参数不同,获取不同的结果
'
'==================================================================
private function geturl()
dim strurl,str_url,i,j,search_str,result_url
search_str="page="
strurl=request.servervariables("url")
strurl=split(strurl,"/")
i=ubound(strurl,1)
str_url=strurl(i)'得到当前页文件名
str_params=trim(request.servervariables("query_string"))
if str_params="" then
result_url=str_url & "?page="
else
if instrrev(str_params,search_str)=0 then
result_url=str_url & "?" & str_params &"&page="
else
j=instrrev(str_params,search_str)-2
if j=-1 then
result_url=str_url & "?page="
else
str_params=left(str_params,j)
result_url=str_url & "?" & str_params &"&page="
end if
end if
end if
geturl=result_url
end function
'====================================================================
' 设置 terminate 事件。
'
'====================================================================
private sub class_terminate
xd_rs.close
set xd_rs=nothing
end sub
'====================================================================
'showerror 错误提示
'
'
'====================================================================
private sub showerror()
if str_error <> "" then
response.write("" & str_error & "")
response.end
end if
end sub
end class
set conn = server.createobject("adodb.connection")
conn.open "driver={microsoft access driver (*.mdb)};dbq=" & server.mappath("pages.mdb")
'#############类调用样例#################
'创建对象
set mypage=new xdownpage
'得到数据库连接
mypage.getconn=conn
'sql语句
mypage.getsql="select * from [test] order by id asc"
'设置每一页的记录条数据为5条
mypage.pagesize=5
'返回recordset
set rs=mypage.getrs()
'显示分页信息,这个方法可以,在set rs=mypage.getrs()以后,可在任意位置调用,可以调用多次
mypage.showpage()
'显示数据
response.write("<br/>")
for i=1 to mypage.pagesize
'这里就可以自定义显示方式了
if not rs.eof then
response.write rs(0) & "<br/>"
rs.movenext
else
exit for
end if
next
%>