C 簡單的通用分頁

2022-02-27 18:32:31 字數 752 閱讀 9263

using system;

using system.collections.generic;

using system.linq;

using system.text;

using system.threading.tasks;

namespace nbamanagement

public int allpage

public int eachcount

public paging(listdatasource, int eachcount)

public listnext()

public listprovious()

//第一頁

public listfist()

//最後一頁

public listend()

/// /// 跳轉到指定的頁

///

///

///

public listgoto(int index)

/// /// 獲得當前頁

///

///

private listgetpage()

}}

通過這樣的乙個類基本實現了大多數的情況下的分頁操作(雖然可能性能不是很高),這裡主要是運用了泛型的特性來幫助我們返回任意的物件集。只需要在ui中做一些簡單的處理即可。

分頁page Django 實現通用分頁

django 提供了乙個用於分頁的paginator 物件,下面簡單介紹下paginator 物件 paginator 物件的匯入 from django.core.paginator import paginator paginator 物件用法 paginator object list,per...

GridView 通用分頁

在專案中,遇到乙個分頁問題,原理很簡單,但是,為了達到復用,將分頁的控制項和方法封裝到使用者控制項中,這樣就可以將分頁的控制項 與ui層分離。以達到 的復用好封裝。清單如下 gridviewpager.ascx前台 control language c autoeventwireup true co...

PHP通用分頁

php通用分頁,先看下樣式 如下 header content type text html charset utf 8 傳入頁碼 page isset get p get p 1 page page 0 intval page 1 conn mysql connect 127.0.0.1 root...