asp.net 分頁(yè)顯示數(shù)據(jù)表的數(shù)據(jù)的代碼
更新時(shí)間:2010年03月30日 12:56:36 作者:
asp.net顯示第一頁(yè)、上一頁(yè)、下一頁(yè)和最后一頁(yè)的分頁(yè)顯示數(shù)據(jù)表的數(shù)據(jù)
實(shí)現(xiàn)代碼如下:
using System;
using System.Collections;
using System.Configuration;
using System.Data;
using System.Linq;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.HtmlControls;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Xml.Linq;
using System.Drawing;
namespace ShowData4
{
public partial class _Default : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
GridView1.PageSize = 5; /*GridView控件在每頁(yè)上顯示的記錄數(shù)目*/
if (GridView1.Rows.Count != 0) /*當(dāng)記錄數(shù)只顯示一頁(yè)時(shí)加載分頁(yè)標(biāo)簽*/
{
Control table = GridView1.Controls[0];
int count = table.Controls.Count;
table.Controls[count - 1].Visible = true;
}
}
protected void GridView1_RowCreated(object sender, GridViewRowEventArgs e)
{
if (e.Row.RowType == DataControlRowType.Pager) /*顯示頁(yè)導(dǎo)航控件的行*/
{
/*創(chuàng)建在網(wǎng)頁(yè)上顯示超鏈接的按鈕*/
LinkButton Button_IndexFirst = new LinkButton();
LinkButton Button_IndexLast = new LinkButton();
LinkButton Button_IndexNext = new LinkButton();
LinkButton Button_IndexPrevious = new LinkButton();
/*添加超鏈接按鈕到頁(yè)導(dǎo)航行*/
e.Row.Controls[0].Controls.Add(Button_IndexFirst);
e.Row.Controls[0].Controls.Add(new LiteralControl((" "))); /*分頁(yè)按鈕之間用2個(gè)空格隔開(kāi)*/
e.Row.Controls[0].Controls.Add(Button_IndexPrevious);
e.Row.Controls[0].Controls.Add(new LiteralControl((" ")));
e.Row.Controls[0].Controls.Add(Button_IndexNext);
e.Row.Controls[0].Controls.Add(new LiteralControl((" ")));
e.Row.Controls[0].Controls.Add(Button_IndexLast);
Button_IndexFirst.Text = "第一頁(yè)";
Button_IndexFirst.CommandName = "first";
Button_IndexFirst.Click += new EventHandler(PageButtonClick);
Button_IndexPrevious.Text = "上一頁(yè)";
Button_IndexPrevious.CommandName = "previous";
Button_IndexPrevious.Click += new EventHandler(PageButtonClick);
Button_IndexNext.Text = "下一頁(yè)";
Button_IndexNext.CommandName = "next";
Button_IndexNext.Click += new EventHandler(PageButtonClick);
Button_IndexLast.Text = "最后一頁(yè)";
Button_IndexLast.CommandName = "last";
Button_IndexLast.Click += new EventHandler(PageButtonClick);
if (GridView1.PageIndex == 0)
{
if (GridView1.PageCount > 1) /*記錄數(shù)所需頁(yè)數(shù)大于一頁(yè)*/
{
Button_IndexFirst.Enabled = false;
Button_IndexPrevious.Enabled = false;
}
else /*記錄數(shù)只需一頁(yè)*/
{
Button_IndexFirst.Enabled = false;
Button_IndexPrevious.Enabled = false;
Button_IndexNext.Enabled = false;
Button_IndexLast.Enabled = false;
}
}
else if (GridView1.PageIndex == GridView1.PageCount - 1)
{
Button_IndexNext.Enabled = false;
Button_IndexLast.Enabled = false;
}
else if (GridView1.PageCount <= 0)
{
Response.Write("數(shù)據(jù)表中沒(méi)有數(shù)據(jù)!");
Button_IndexFirst.Enabled = false;
Button_IndexPrevious.Enabled = false;
Button_IndexNext.Enabled = false;
Button_IndexLast.Enabled = false;
}
}
}
protected void PageButtonClick(object sender, EventArgs e)
{
LinkButton clickedButton = ((LinkButton)sender);
if (clickedButton.CommandName == "first") /*點(diǎn)擊的是“第一頁(yè)”按鈕,頁(yè)索引為0*/
{
GridView1.PageIndex = 0;
}
else if (clickedButton.CommandName == "next") /*點(diǎn)擊的是“下一頁(yè)”按鈕,頁(yè)索引加1*/
{
if (GridView1.PageIndex < GridView1.PageCount - 1)
{
GridView1.PageIndex += 1;
}
}
else if (clickedButton.CommandName == "previous") /*點(diǎn)擊的是“上一頁(yè)”按鈕,頁(yè)索引如果大于等于1則減1*/
{
if (GridView1.PageIndex >= 1)
{
GridView1.PageIndex -= 1;
}
}
else if (clickedButton.CommandName == "last") /*點(diǎn)擊的是“最后一頁(yè)”按鈕*/
{
GridView1.PageIndex = GridView1.PageCount - 1;
}
}
}
}
復(fù)制代碼 代碼如下:
using System;
using System.Collections;
using System.Configuration;
using System.Data;
using System.Linq;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.HtmlControls;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Xml.Linq;
using System.Drawing;
namespace ShowData4
{
public partial class _Default : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
GridView1.PageSize = 5; /*GridView控件在每頁(yè)上顯示的記錄數(shù)目*/
if (GridView1.Rows.Count != 0) /*當(dāng)記錄數(shù)只顯示一頁(yè)時(shí)加載分頁(yè)標(biāo)簽*/
{
Control table = GridView1.Controls[0];
int count = table.Controls.Count;
table.Controls[count - 1].Visible = true;
}
}
protected void GridView1_RowCreated(object sender, GridViewRowEventArgs e)
{
if (e.Row.RowType == DataControlRowType.Pager) /*顯示頁(yè)導(dǎo)航控件的行*/
{
/*創(chuàng)建在網(wǎng)頁(yè)上顯示超鏈接的按鈕*/
LinkButton Button_IndexFirst = new LinkButton();
LinkButton Button_IndexLast = new LinkButton();
LinkButton Button_IndexNext = new LinkButton();
LinkButton Button_IndexPrevious = new LinkButton();
/*添加超鏈接按鈕到頁(yè)導(dǎo)航行*/
e.Row.Controls[0].Controls.Add(Button_IndexFirst);
e.Row.Controls[0].Controls.Add(new LiteralControl((" "))); /*分頁(yè)按鈕之間用2個(gè)空格隔開(kāi)*/
e.Row.Controls[0].Controls.Add(Button_IndexPrevious);
e.Row.Controls[0].Controls.Add(new LiteralControl((" ")));
e.Row.Controls[0].Controls.Add(Button_IndexNext);
e.Row.Controls[0].Controls.Add(new LiteralControl((" ")));
e.Row.Controls[0].Controls.Add(Button_IndexLast);
Button_IndexFirst.Text = "第一頁(yè)";
Button_IndexFirst.CommandName = "first";
Button_IndexFirst.Click += new EventHandler(PageButtonClick);
Button_IndexPrevious.Text = "上一頁(yè)";
Button_IndexPrevious.CommandName = "previous";
Button_IndexPrevious.Click += new EventHandler(PageButtonClick);
Button_IndexNext.Text = "下一頁(yè)";
Button_IndexNext.CommandName = "next";
Button_IndexNext.Click += new EventHandler(PageButtonClick);
Button_IndexLast.Text = "最后一頁(yè)";
Button_IndexLast.CommandName = "last";
Button_IndexLast.Click += new EventHandler(PageButtonClick);
if (GridView1.PageIndex == 0)
{
if (GridView1.PageCount > 1) /*記錄數(shù)所需頁(yè)數(shù)大于一頁(yè)*/
{
Button_IndexFirst.Enabled = false;
Button_IndexPrevious.Enabled = false;
}
else /*記錄數(shù)只需一頁(yè)*/
{
Button_IndexFirst.Enabled = false;
Button_IndexPrevious.Enabled = false;
Button_IndexNext.Enabled = false;
Button_IndexLast.Enabled = false;
}
}
else if (GridView1.PageIndex == GridView1.PageCount - 1)
{
Button_IndexNext.Enabled = false;
Button_IndexLast.Enabled = false;
}
else if (GridView1.PageCount <= 0)
{
Response.Write("數(shù)據(jù)表中沒(méi)有數(shù)據(jù)!");
Button_IndexFirst.Enabled = false;
Button_IndexPrevious.Enabled = false;
Button_IndexNext.Enabled = false;
Button_IndexLast.Enabled = false;
}
}
}
protected void PageButtonClick(object sender, EventArgs e)
{
LinkButton clickedButton = ((LinkButton)sender);
if (clickedButton.CommandName == "first") /*點(diǎn)擊的是“第一頁(yè)”按鈕,頁(yè)索引為0*/
{
GridView1.PageIndex = 0;
}
else if (clickedButton.CommandName == "next") /*點(diǎn)擊的是“下一頁(yè)”按鈕,頁(yè)索引加1*/
{
if (GridView1.PageIndex < GridView1.PageCount - 1)
{
GridView1.PageIndex += 1;
}
}
else if (clickedButton.CommandName == "previous") /*點(diǎn)擊的是“上一頁(yè)”按鈕,頁(yè)索引如果大于等于1則減1*/
{
if (GridView1.PageIndex >= 1)
{
GridView1.PageIndex -= 1;
}
}
else if (clickedButton.CommandName == "last") /*點(diǎn)擊的是“最后一頁(yè)”按鈕*/
{
GridView1.PageIndex = GridView1.PageCount - 1;
}
}
}
}
相關(guān)文章
利用ASP.NET MVC+Bootstrap搭建個(gè)人博客之打造清新分頁(yè)Helper(三)
這篇文章主要介紹了利用ASP.NET MVC+Bootstrap搭建個(gè)人博客之打造清新分頁(yè)Helper(三)的相關(guān)資料,非常不錯(cuò),具有參考借鑒價(jià)值,需要的朋友可以參考下2016-06-06
asp.net模板引擎Razor中cacheName的問(wèn)題分析
這篇文章主要介紹了asp.net模板引擎Razor中cacheName的問(wèn)題,實(shí)例分析了cacheName在提高編譯效率方面的使用技巧,需要的朋友可以參考下2015-06-06
asp.net在事件中啟動(dòng)線程來(lái)打開(kāi)一個(gè)頁(yè)面的實(shí)現(xiàn)方法
點(diǎn)擊一個(gè)按鈕做兩件事情,一件需要點(diǎn)擊按鈕馬上完成,另一件事情是點(diǎn)擊按鈕后做其他事情,不會(huì)的朋友一起來(lái)看看下面是如何實(shí)現(xiàn)的2014-11-11
.Net中的弱引用字典WeakDictionary和ConditionalWeakTable介紹
這篇文章介紹了.Net中的弱引用字典WeakDictionary和ConditionalWeakTable,文中通過(guò)示例代碼介紹的非常詳細(xì)。對(duì)大家的學(xué)習(xí)或工作具有一定的參考借鑒價(jià)值,需要的朋友可以參考下2022-06-06
在asp.net(c#)下實(shí)現(xiàn)調(diào)用cmd的方法
通常情況下我們會(huì)用到調(diào)用cmd.exe來(lái)實(shí)現(xiàn)一些命令,例如 ping ,等等2012-01-01
asp.net下數(shù)據(jù)庫(kù)操作優(yōu)化一例
數(shù)據(jù)庫(kù)升級(jí),需要對(duì)幾個(gè)表進(jìn)行一些數(shù)據(jù)轉(zhuǎn)換,具體是這樣:針對(duì)每一個(gè) Item,從 orders 表里查出 Shop_Id,并把此 Id 賦值給 items 和 skus 中的 Shop_Id。2010-11-11
.NET?WPF?可視化樹(shù)(Visual?Tree)詳解
WPF?的可視化樹(shù)(Visual?Tree)是描述用戶界面元素層級(jí)關(guān)系的核心概念之一,它與邏輯樹(shù)(Logical?Tree)共同構(gòu)成了?WPF?的?UI?架構(gòu),本文給大家介紹.NET?WPF?可視化樹(shù)(Visual?Tree)的相關(guān)知識(shí),感興趣的朋友一起看看吧2025-04-04
使用DataTable更新數(shù)據(jù)庫(kù)(增,刪,改)
使用DataTable更新數(shù)據(jù)庫(kù)(增,刪,改),需要的朋友可以參考一下2013-03-03

