java datagrid控件_Asp.net中DataGrid控件的自定义分页

使用实现起来虽然比较方便,但是效率不高,每次都需要读取所有页(整个记录集),而加载

使用实现起来虽然比较方便,但是效率不高,每次都需要读取所有页(整个记录集),而加载的只是其中一页,造成了资源的浪费,记录多又会使效率变得很低。下面通过DataGrid的自定义分页功能来减少资源使用和提高效率。<?xml:namespace prefix = o ns = "urn:schemas-microsoft-com:office:office" />

实现的关键是设置AllowCustomPaging属性位True,并把VirtualItemCount属性设置位总的记录数,给分页提供依据,前台的主要代码如下:

9pt" cellSpacing="1" cellPadding="1" width="450" align="center"

border="1">

这里使用的数据源还是假设为Northwind的Customers表。

下面是访问单页的存储过程,实现方式很多,不过这个是最普通的,

CREATE PROCEDURE [GetCustomersDataPage]

@PageIndex INT,

@PageSizeINT,

@RecordCount INT OUT,

@PageCount INT OUT

AS

SELECT @RecordCount = COUNT(*)FROMCustomers

SET @PageCount = CEILING(@RecordCount * 1.0 / @PageSize)

DECLARE @SQLSTR NVARCHAR(1000)

IF @PageIndex = 0 OR @PageCount <= 1

SET @SQLSTR =N'SELECT TOP '+STR( @PageSize )+

'CustomerID, CompanyName,Address,PhoneFROMCustomers ORDER BY CustomerID DESC'

ELSE IF@PageIndex = @PageCount - 1

SET @SQLSTR =N' SELECT * FROM ( SELECT TOP '+STR( @RecordCount - @PageSize * @PageIndex )+

'CustomerID, CompanyName,Address,PhoneFROMCustomers ORDER BY CustomerID ASC ) TempTableORDER BY CustomerID DESC'

ELSE

SET @SQLSTR =N' SELECT TOP'+STR( @PageSize )+' * FROM ( SELECT TOP '+STR( @RecordCount - @PageSize * @PageIndex )+

'CustomerID, CompanyName,Address,PhoneFROMCustomers ORDER BY CustomerID ASC ) TempTable ORDER BY CustomerID DESC'

EXEC (@SQLSTR)

GO

获取记录数和页数都采用存储过程的输出参数。

获取数据源,这里返回一个DataSet。

先定义了连个数据成员,

privateint pageCount;//页数

privateint recordCount;//记录数

//获取单页数据

privatestatic DataSet GetCustomersData(int pageIndex,int pageSize,ref int recordCount,ref int pageCount)

{

string connString = ConfigurationSettings.AppSettings["ConnString"];

SqlConnection conn = new SqlConnection(connString);

SqlCommand comm = new SqlCommand("GetCustomersDataPage",conn);

comm.Parameters.Add(new SqlParameter("@PageIndex",SqlDbType.Int));

comm.Parameters[0].Value = pageIndex;

comm.Parameters.Add(new SqlParameter("@PageSize",SqlDbType.Int));

comm.Parameters[1].Value = pageSize;

comm.Parameters.Add(new SqlParameter("@RecordCount",SqlDbType.Int));

comm.Parameters[2].Direction = ParameterDirection.Output;

comm.Parameters.Add(new SqlParameter("@PageCount",SqlDbType.Int));

comm.Parameters[3].Direction = ParameterDirection.Output;

comm.CommandType = CommandType.StoredProcedure;

SqlDataAdapter dataAdapter = new SqlDataAdapter(comm);

DataSet ds = new DataSet();

dataAdapter.Fill(ds);

recordCount = (int)comm.Parameters[2].Value;

pageCount = (int)comm.Parameters[3].Value;

return ds;

}

//绑定数据到DataGrid,同时刷新数据总记录数

privatevoid DataGridDataBind()

{

DataSet ds = GetCustomersData(PageIndex,PageSize,ref recordCount,ref pageCount);

this.DataGrid1.VirtualItemCount = RecordCount;

this.DataGrid1.DataSource = ds;

this.DataGrid1.DataBind();

}

下面是分页的几个变量属性

publicint PageCount

{

get{return this.DataGrid1.PageCount;}

}

publicint PageSize

{

get{return this.DataGrid1.PageSize;}

}

publicint PageIndex

{

get{return this.DataGrid1.CurrentPageIndex;}

set{this.DataGrid1.CurrentPageIndex = value;}

}

publicint RecordCount

{

get{return recordCount;}

}

注册DataGrid分页事件

//分页事件处理

privatevoid DataGrid1_PageIndexChanged(object source, System.Web.UI.WebControls.DataGridPageChangedEventArgs e)

{

DataGrid dg = (DataGrid)source;

dg.CurrentPageIndex = e.NewPageIndex;

DataGridDataBind();

}

最好判断当前页面是否是第一次加载,防止重复加载两次数据,

privatevoid Page_Load(object sender, System.EventArgs e)

{

if(!Page.IsPostBack)

{

DataGridDataBind();

}

}

显示界面如下:

这个例子中没有显示分页的一些参数,我们可以进一步对其进行改进。

本文由来源 21aspnet,由 system_mush 整理编辑,其版权均为 21aspnet 所有,文章内容系作者个人观点,不代表 Java架构师必看 对观点赞同或支持。如需转载,请注明文章来源。

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值