精品熟女碰碰人人a久久,多姿,欧美欧美a v日韩中文字幕,日本福利片秋霞国产午夜,欧美成人禁片在线观看

創建一個ASP通用分頁類
從開始學習到使用asp到現在也寫了不少程序了,最令人頭痛的是寫數據分頁,每次都是由于幾個變量名或幾個參數的不同,因而需要每次都寫哪一段冗長而又繁雜的分頁代碼,代碼長了使得程序的可讀性變差,容易出差,調試半天也找不出錯在哪里,所以慢慢的我開始使用一些網上的提供的分頁函數或分頁類。的確省事不少,但是通常的函數和類的做法都是就數據顯示部分也封裝了起來,每次為了達到自己需要的顯求效果要去改動函數或者類的本身,所以使用起來也不是怎么方便,自己寫的分頁改起來已經夠復雜了,更不要說別人的了。

所以趁昨天有空自己寫了一個分頁的類,自我感覺良好(不要用雞蛋砸我),在這里和大家分享一下自己的經驗(談不上經驗,感想吧)。在這里我也不想說分頁的原理了,反正大家都懂,要我往深入的談我也不會。呵呵。

一、創建分頁類的目標
在寫之前,我曾想過,我究竟要寫怎么樣一個類,回想起以前寫分頁過程的時候,最煩的莫過于每次都要寫哪一段復雜的分頁代碼,最大的煩惱每次都是僅僅幾個變量名的不同。所以第一個要實現的就是要把這個封裝起來,第二個就是要把分頁的導航條也封裝起來,第三個,不習慣哪些把數據顯示部分也封裝起來的方法,這不是方便編程,對與哪些對顯示效果每次都不同的用戶來說,比自己寫分頁還要麻煩。所以我的目地就是對recordset進行一些簡單的封裝。

二、創建過程
所以我寫的第一個屬性,就是返一個經過處理的recordse

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

這個屬性的作用是更據指定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
以上幾個是在使用類的過程必需要指定的參數,曾經我在寫屬性的時候對每個傳入的參數加上isobject(obj_conn)等判斷,為的是類的健壯,但是后來想來想去,這個對與asp來說沒有必要,不加還能加快點速度,至于為什么這樣,我想各位在使用過程中也會發現,加還不如不加。這也是我經過了思想斗爭以后才去掉了,只保留了一些必要的驗證。
一個參數就是當前頁的獲得,在程序中我用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
到這里這個類分的功能基本已經實現了,只要在調用這個類的頁面的url后面加上page=n,它就會顯示第n頁的內容了,所以接下去要做的就是創建一個數據導航條了,我把它設計為類似以面的形式

9 3[1] [2] [3] [4] [5] [6] [7] [8] 4 :頁次:1/8頁 共51條記錄 7條/每頁

在頁面里通過調用showpage()的方法顯示出來,showpage可以在getrs以后的任意位置調用,也可以調用多次
public sub showpage()
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的過程來實現,并在生成導航時調用。

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=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 %>

相關文章