這篇文章主要講解了“GridView分頁的實(shí)現(xiàn)方式”,文中的講解內(nèi)容簡(jiǎn)單清晰,易于學(xué)習(xí)與理解,下面請(qǐng)大家跟著小編的思路慢慢深入,一起來研究和學(xué)習(xí)“GridView分頁的實(shí)現(xiàn)方式”吧!
站在用戶的角度思考問題,與客戶深入溝通,找到遜克網(wǎng)站設(shè)計(jì)與遜克網(wǎng)站推廣的解決方案,憑借多年的經(jīng)驗(yàn),讓設(shè)計(jì)與互聯(lián)網(wǎng)技術(shù)結(jié)合,創(chuàng)造個(gè)性化、用戶體驗(yàn)好的作品,建站類型包括:網(wǎng)站設(shè)計(jì)制作、成都網(wǎng)站設(shè)計(jì)、企業(yè)官網(wǎng)、英文網(wǎng)站、手機(jī)端網(wǎng)站、網(wǎng)站推廣、域名與空間、網(wǎng)絡(luò)空間、企業(yè)郵箱。業(yè)務(wù)覆蓋遜克地區(qū)。GridView分頁的實(shí)現(xiàn)
復(fù)制代碼 代碼如下:
要在GridView中加入
//實(shí)現(xiàn)分頁
AllowPaging="true"
//一頁數(shù)據(jù)10行
PageSize="10"
// 分頁時(shí)觸發(fā)的事件
OnPageIndexChanging="gvwDesignationName_PageIndexChanging"
在服務(wù)器事件里
復(fù)制代碼 代碼如下:
protectedvoid gvwDesignationName_PageIndexChanging(object sender, GridViewPageEventArgs e)
{
gvwDesignationName.PageIndex=e.newIndex;
bingDesignatioonName();
}
這里我給出一個(gè)通用顯示分頁的模板(網(wǎng)上搜的,自己給出注釋)
復(fù)制代碼 代碼如下:
當(dāng)前第:
//((GridView)Container.NamingContainer)就是為了得到當(dāng)前的控件
頁/共:
//得到分頁頁面的總數(shù)
頁
//如果該分頁是首分頁,那么該連接就不會(huì)顯示了.同時(shí)對(duì)應(yīng)了自帶識(shí)別的命令參數(shù)CommandArgument
//如果該分頁是尾頁,那么該連接就不會(huì)顯示了
轉(zhuǎn)到第
//這里將CommandArgument即使點(diǎn)擊該按鈕e.newIndex 值為3
對(duì)應(yīng)該事件中代碼為
復(fù)制代碼 代碼如下:
protected void gvwDesignationName_PageIndexChanging(object sender, GridViewPageEventArgs e)
{
// 得到該控件
GridView theGrid = sender as GridView;
int newPageIndex = 0;
if (e.NewPageIndex==-3)
{
//點(diǎn)擊了Go按鈕
TextBox txtNewPageIndex = null;
//GridView較DataGrid提供了更多的API,獲取分頁塊可以使用BottomPagerRow 或者TopPagerRow,當(dāng)然還增加了HeaderRow和FooterRow
GridViewRow pagerRow = theGrid.BottomPagerRow;
if (pagerRow != null)
{
//得到text控件
txtNewPageIndex = pagerRow.FindControl("txtNewPageIndex") as TextBox;
}
if ( txtNewPageIndex!= null)
{
//得到索引
newPageIndex = int.Parse(txtNewPageIndex.Text) - 1;
}
}
else
{
//點(diǎn)擊了其他的按鈕
newPageIndex = e.NewPageIndex;
}
//防止新索引溢出
newPageIndex = newPageIndex < 0 ? 0 : newPageIndex;
newPageIndex = newPageIndex >= theGrid.PageCount ? theGrid.PageCount - 1 : newPageIndex;
//得到新的值
theGrid.PageIndex = newPageIndex;
//重新綁定
bingDesignatioonName();
}
感謝各位的閱讀,以上就是“GridView分頁的實(shí)現(xiàn)方式”的內(nèi)容了,經(jīng)過本文的學(xué)習(xí)后,相信大家對(duì)GridView分頁的實(shí)現(xiàn)方式這一問題有了更深刻的體會(huì),具體使用情況還需要大家實(shí)踐驗(yàn)證。這里是創(chuàng)新互聯(lián)網(wǎng)站建設(shè)公司,,小編將為大家推送更多相關(guān)知識(shí)點(diǎn)的文章,歡迎關(guān)注!