OA專案之分頁

2021-09-07 22:04:10 字數 1603 閱讀 8530

using system;

using system.collections.generic;

using system.linq;

using system.web;

namespace digitalcampus.web.common

else

//上一組

if ((pto - 10) > 0)

else

//總頁數與組最大最比較

if (pto > pagecount)

else

//顯示面碼

for (int i = pto - 9; i <= ptotemp; i++)

else

}//下一組

if ((pto) < pagecount)

else

int page = 0;

if (datacount % pagesize != 0)

else

if (currentpage == page || page == 0)

else

strpage += "共" + datacount + "條資料

";strpage += "頁碼:" + currentpage + "/" + page + "

";//string strparray = new string ;

//string strp = string.empty;

//for (int i = 0; i < strparray.length; i++)

////strpage += "顯示:

" + strp + "

";return strpage;

}///

/// 分頁 js跳轉

///

/// 資料總數

/// 每頁顯示資料數

/// 當前頁碼

/// 傳參

/// 頁面

///

public static string getstrpage2(int datacount, int pagesize, int currentpage, string para)

else

//上一組

if ((pto - 6) > 0)

else

//總頁數與組最大最比較

if (pto > pagecount)

else

//顯示面碼

for (int i = pto - 5; i <= ptotemp; i++)

else

}//下一組

if ((pto) < pagecount)

else

int page = 0;

if (datacount % pagesize != 0)

else

if (currentpage == page || page == 0)

else

strpage += "共" + datacount + "條資料

";strpage += "頁碼:" + currentpage + "/" + page + "

";return strpage;}}

}

python專案篇 stark之分頁

1 引入utils分頁元件 2 將list view中的資料封裝成showlist類 3 在showlist類中呼叫分頁介面 showlist類 class showlist object def init self,config,data list,request self.config conf...

Oracle之分頁查詢

oracle的分頁查詢語句基本上可以按照本文給出的格式來進行套用。分頁查詢格式 select from select a.rownum rn from select from table name a where rownum 40 where rn 21其中最內層的查詢select from ta...

Oracle之分頁查詢

分頁查詢 在資料量大的情況下,返回指定資料段資料集合,即從第m條 到 第n條 資料集合。分頁查詢一般只需傳入兩個引數 起始記錄數m 終止記錄數n 方式1 select from select rownum as rowno,t.from t table t where 1 1 and rownum ...