asp.net 分頁顯示數(shù)據(jù)表的數(shù)據(jù)的代碼
更新時間:2010年03月30日 12:56:36 作者:
asp.net顯示第一頁、上一頁、下一頁和最后一頁的分頁顯示數(shù)據(jù)表的數(shù)據(jù)
實現(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控件在每頁上顯示的記錄數(shù)目*/
if (GridView1.Rows.Count != 0) /*當記錄數(shù)只顯示一頁時加載分頁標簽*/
{
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) /*顯示頁導航控件的行*/
{
/*創(chuàng)建在網(wǎng)頁上顯示超鏈接的按鈕*/
LinkButton Button_IndexFirst = new LinkButton();
LinkButton Button_IndexLast = new LinkButton();
LinkButton Button_IndexNext = new LinkButton();
LinkButton Button_IndexPrevious = new LinkButton();
/*添加超鏈接按鈕到頁導航行*/
e.Row.Controls[0].Controls.Add(Button_IndexFirst);
e.Row.Controls[0].Controls.Add(new LiteralControl((" "))); /*分頁按鈕之間用2個空格隔開*/
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 = "第一頁";
Button_IndexFirst.CommandName = "first";
Button_IndexFirst.Click += new EventHandler(PageButtonClick);
Button_IndexPrevious.Text = "上一頁";
Button_IndexPrevious.CommandName = "previous";
Button_IndexPrevious.Click += new EventHandler(PageButtonClick);
Button_IndexNext.Text = "下一頁";
Button_IndexNext.CommandName = "next";
Button_IndexNext.Click += new EventHandler(PageButtonClick);
Button_IndexLast.Text = "最后一頁";
Button_IndexLast.CommandName = "last";
Button_IndexLast.Click += new EventHandler(PageButtonClick);
if (GridView1.PageIndex == 0)
{
if (GridView1.PageCount > 1) /*記錄數(shù)所需頁數(shù)大于一頁*/
{
Button_IndexFirst.Enabled = false;
Button_IndexPrevious.Enabled = false;
}
else /*記錄數(shù)只需一頁*/
{
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ù)表中沒有數(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") /*點擊的是“第一頁”按鈕,頁索引為0*/
{
GridView1.PageIndex = 0;
}
else if (clickedButton.CommandName == "next") /*點擊的是“下一頁”按鈕,頁索引加1*/
{
if (GridView1.PageIndex < GridView1.PageCount - 1)
{
GridView1.PageIndex += 1;
}
}
else if (clickedButton.CommandName == "previous") /*點擊的是“上一頁”按鈕,頁索引如果大于等于1則減1*/
{
if (GridView1.PageIndex >= 1)
{
GridView1.PageIndex -= 1;
}
}
else if (clickedButton.CommandName == "last") /*點擊的是“最后一頁”按鈕*/
{
GridView1.PageIndex = GridView1.PageCount - 1;
}
}
}
}
復制代碼 代碼如下:
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控件在每頁上顯示的記錄數(shù)目*/
if (GridView1.Rows.Count != 0) /*當記錄數(shù)只顯示一頁時加載分頁標簽*/
{
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) /*顯示頁導航控件的行*/
{
/*創(chuàng)建在網(wǎng)頁上顯示超鏈接的按鈕*/
LinkButton Button_IndexFirst = new LinkButton();
LinkButton Button_IndexLast = new LinkButton();
LinkButton Button_IndexNext = new LinkButton();
LinkButton Button_IndexPrevious = new LinkButton();
/*添加超鏈接按鈕到頁導航行*/
e.Row.Controls[0].Controls.Add(Button_IndexFirst);
e.Row.Controls[0].Controls.Add(new LiteralControl((" "))); /*分頁按鈕之間用2個空格隔開*/
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 = "第一頁";
Button_IndexFirst.CommandName = "first";
Button_IndexFirst.Click += new EventHandler(PageButtonClick);
Button_IndexPrevious.Text = "上一頁";
Button_IndexPrevious.CommandName = "previous";
Button_IndexPrevious.Click += new EventHandler(PageButtonClick);
Button_IndexNext.Text = "下一頁";
Button_IndexNext.CommandName = "next";
Button_IndexNext.Click += new EventHandler(PageButtonClick);
Button_IndexLast.Text = "最后一頁";
Button_IndexLast.CommandName = "last";
Button_IndexLast.Click += new EventHandler(PageButtonClick);
if (GridView1.PageIndex == 0)
{
if (GridView1.PageCount > 1) /*記錄數(shù)所需頁數(shù)大于一頁*/
{
Button_IndexFirst.Enabled = false;
Button_IndexPrevious.Enabled = false;
}
else /*記錄數(shù)只需一頁*/
{
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ù)表中沒有數(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") /*點擊的是“第一頁”按鈕,頁索引為0*/
{
GridView1.PageIndex = 0;
}
else if (clickedButton.CommandName == "next") /*點擊的是“下一頁”按鈕,頁索引加1*/
{
if (GridView1.PageIndex < GridView1.PageCount - 1)
{
GridView1.PageIndex += 1;
}
}
else if (clickedButton.CommandName == "previous") /*點擊的是“上一頁”按鈕,頁索引如果大于等于1則減1*/
{
if (GridView1.PageIndex >= 1)
{
GridView1.PageIndex -= 1;
}
}
else if (clickedButton.CommandName == "last") /*點擊的是“最后一頁”按鈕*/
{
GridView1.PageIndex = GridView1.PageCount - 1;
}
}
}
}
相關文章
Visual studio 2017添加引用時報錯未能正確加載ReferenceManagerPackage包的解決方法
這篇文章主要介紹了VS2017添加引用時報錯未能正確加載ReferenceManagerPackage包的解決方法,具有一定的參考價值,感興趣的小伙伴們可以參考一下2017-04-04asp.net core配合vue實現(xiàn)后端驗證碼邏輯
網(wǎng)上的前端驗證碼邏輯總感覺不安全,驗證碼建議還是使用后端配合驗證。本文主要介紹了asp.net core配合vue實現(xiàn)后端驗證碼邏輯,感興趣的可以了解一下2021-06-06在 .NET Framework 2.0 中未處理的異常導致基于 ASP.NET 的應用程序意外退出
如果在 Microsoft .NET Framework 2.0 上構(gòu)建的基于 Microsoft ASP.NET 的應用程序中引發(fā)未處理的異常,該應用程序?qū)馔馔顺?。如果出現(xiàn)這個問題,不會在應用程序日志中記錄了解此問題所必需的異常信息。2009-11-11ASP.NET?Core使用EF創(chuàng)建模型(包含屬性、排除屬性、主鍵和生成值)
這篇文章介紹了ASP.NET?Core使用EF創(chuàng)建模型的的方法,文中通過示例代碼介紹的非常詳細。對大家的學習或工作具有一定的參考借鑒價值,需要的朋友可以參考下2022-04-04用ASP.NET做的個性化的郵件發(fā)送系統(tǒng)
如果要你用ASP來做一個郵件發(fā)送系統(tǒng),你一定認為這是一個比較復雜的工作。其實也的確是這樣。但當他的后繼產(chǎn)品ASP.NET被推出以后,他的強大功能就使的這一切就變的相對簡單了。真的這樣神奇么?我們就通過ASP.NET做一個郵件發(fā)送系統(tǒng),看看到底有什么奧秘,是不是真的簡單。2008-02-02輕量級ORM框架Dapper應用之實現(xiàn)CURD操作
這篇文章介紹了使用Dapper實現(xiàn)CURD操作的方法,文中通過示例代碼介紹的非常詳細。對大家的學習或工作具有一定的參考借鑒價值,需要的朋友可以參考下2022-03-03