asp.net 分页显示数据表的数据的代码

所属分类: 网络编程 / ASP.NET 阅读数: 1617
收藏 0 赞 0 分享
实现代码如下:
复制代码 代码如下:

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控件在每页上显示的记录数目*/
if (GridView1.Rows.Count != 0) /*当记录数只显示一页时加载分页标签*/
{
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) /*显示页导航控件的行*/
{
/*创建在网页上显示超链接的按钮*/
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) /*记录数所需页数大于一页*/
{
Button_IndexFirst.Enabled = false;
Button_IndexPrevious.Enabled = false;
}
else /*记录数只需一页*/
{
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("数据表中没有数据!");
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;
}
}
}
}
更多精彩内容其他人还在看

解析WPF实现音频文件循环顺序播放的解决方法

本篇文章是对WPF实现音频文件循环顺序播放的方法进行了详细的分析介绍,需要的朋友参考下
收藏 0 赞 0 分享

解决.net framework 4.0环境下遇到版本不同编译不通过的方法详解

本篇文章是对.net framework 4.0环境下遇到版本不同编译不通过的解决方法进行了详细的分析介绍,需要的朋友参考下
收藏 0 赞 0 分享

将文件上传、下载(以二进制流保存到数据库)实现代码

将文件以二进制流的格式写入数据库:首先获得文件路径,然后将文件以二进制读出保存在一个二进制数组中具体请祥看本文,希望对你有所帮助
收藏 0 赞 0 分享

点击提交按钮后DropDownList的值变为默认值实现分析

在点击提交按钮后,页面上所有的绑定到数据库的控件值都恢复到默认值,下面与大家分享下DropDownList的值变为默认值
收藏 0 赞 0 分享

ASP.NET web.config中数据库连接字符串connectionStrings节的配置方法

ASP.NET web.config中数据库连接字符串connectionStrings节的配置方法,需要的朋友可以参考一下
收藏 0 赞 0 分享

Linkbutton控件在项目中的简单应用

Button控件可分为button控件、LinkButton控件、ImageButton控件三类,而LinkButton控件则在页面上显示为一个超级链接,下面与大家分享下其具体应用
收藏 0 赞 0 分享

Web.config 和 App.config 的区别分析

Web.config 和 App.config 的区别分析,需要的朋友可以参考一下
收藏 0 赞 0 分享

基于.Net中的数字与日期格式化规则助记词的使用详解

本篇文章是对.Net中的数字与日期格式化规则助记词的使用进行了详细的分析介绍,需要的朋友参考下
收藏 0 赞 0 分享

解决在Web.config或App.config中添加自定义配置的方法详解

本篇文章是对在Web.config或App.config中添加自定义配置的方法进行了详细的分析介绍,需要的朋友参考下
收藏 0 赞 0 分享

深入本机影像生成器(Ngen.exe)工具使用方法详解

本篇文章是对本机影像生成器(Ngen.exe)工具使用方法进行了详细的分析介绍,需要的朋友参考下
收藏 0 赞 0 分享
查看更多