GridView自定义分页的四种存储过程

1. 为什么不使用GridView的默认分页功能

首先要说说为什么不用GridView的默认的分页功能,GridView控件并非真正知道如何获得一个新页面,它只是请求绑定的数据源控件返回适合规定页面的行,分页最终是由数据源控件完成。当我们使用SqlDataSource或使用以上的代码处理分页时。每次这个页面被请求或者回发时,所有和这个SELECT语句匹配的记录都被读取并存储到一个内部的DataSet中,但只显示适合当前页面大小的记录数。也就是说有可能使用Select语句返回1000000条记录,而每次回发只显示10条记录。如果启用了SqlDataSource上的缓存,通过把EnableCaching设置为true,则情况会更好一些。在这种情况下,我们只须访问一次数据库服务器,整个数据集只加载一次,并在指定的期限内存储在ASP.NET缓存中。只要数据保持缓存状态,显示任何页面将无须再次访问数据库服务器。然而,可能有大量数据存储在内存中,换而言之,Web服务器的压力大大的增加了。因此,如果要使用SqlDataSource来获取较小的数据时,GridView内建的自动分页可能足够高效了,但对于大数据量来说是不合适的。

2. 分页的四种存储过程(分页+排序的版本请参考Blog里其他文章)

在大多数情况下我们使用存储过程来进行分页,今天有空总结了一下使用存储过程对GridView进行分页的4种写法(分别是使用Top关键字,临时表,临时表变量和SQL Server 2005 新加的Row_Number()函数)

后续的文章中还将涉及GridView控件使用ObjectDataSource自定义分页 + 排序,Repeater控件自定义分页 + 排序,有兴趣的朋友可以参考。

复制代码 代码如下:

if exists(select 1 from sys.objects where name = 'GetProductsCount' and type = 'P')

drop proc GetProductsCount

go

CREATE PROCEDURE GetProductsCount

as

select count(*) from products

go

--1.使用Top

if exists(select 1 from sys.objects where name = 'GetProductsByPage' and type = 'P')

drop proc GetProductsByPage

go

CREATE PROCEDURE GetProductsByPage

@PageNumber int,

@PageSize int

AS

declare @sql nvarchar(4000)

set @sql = 'select top ' + Convert(varchar, @PageSize)

+ ' * from products where productid not in (select top ' + Convert(varchar, (@PageNumber - 1) * @PageSize) + ' productid from products)'

exec sp_executesql @sql

go

--exec GetProductsByPage 1, 10

--exec GetProductsByPage 5, 10

--2.使用临时表

if exists(select 1 from sys.objects where name = 'GetProductsByPage' and type = 'P')

drop proc GetProductsByPage

go

CREATE PROCEDURE GetProductsByPage

@PageNumber int,

@PageSize int

AS

-- 创建临时表

CREATE TABLE #TempProducts

(

ID int IDENTITY PRIMARY KEY,

ProductID int,

ProductName varchar(40) ,

SupplierID int,

CategoryID int,

QuantityPerUnit nvarchar(20),

UnitPrice money,

UnitsInStock smallint,

UnitsOnOrder smallint,

ReorderLevel smallint,

Discontinued bit

)

-- 填充临时表

INSERT INTO #TempProducts

(ProductID, ProductName, SupplierID, CategoryID, QuantityPerUnit, UnitPrice, UnitsInStock, UnitsOnOrder, ReorderLevel, Discontinued)

SELECT ProductID, ProductName, SupplierID, CategoryID, QuantityPerUnit, UnitPrice, UnitsInStock, UnitsOnOrder, ReorderLevel, Discontinued

FROM Products

DECLARE @FromID int

DECLARE @ToID int

SET @FromID = ((@PageNumber - 1) * @PageSize) + 1

SET @ToID = @PageNumber * @PageSize

SELECT ProductID, ProductName, SupplierID, CategoryID, QuantityPerUnit, UnitPrice, UnitsInStock, UnitsOnOrder, ReorderLevel, Discontinued

FROM #TempProducts

WHERE ID >= @FromID AND ID <= @ToID

go

--exec GetProductsByPage 1, 10

--exec GetProductsByPage 5, 10

--3.使用表变量

/*

为要分页的数据创建一个table变量,这个table变量里有一个作为主健的IDENTITY列.这样需要分页的每条记录在table变量里就和一个row index(通过IDENTITY列)关联起来了.一旦table变量产生,连接数据库表的SELECT语句就被执行,获取需要的记录.SET ROWCOUNT用来限制放到table变量里的记录的数量.

当SET ROWCOUNT的值指定为PageNumber * PageSize时,这个方法的效率取决于被请求的页数.对于比较前面的页来说– 比如开始几页的数据– 这种方法非常有效. 但是对接近尾部的页来说,这种方法的效率和默认分页时差不多

*/

if exists(select 1 from sys.objects where name = 'GetProductsByPage' and type = 'P')

drop proc GetProductsByPage

go

CREATE PROCEDURE GetProductsByPage

@PageNumber int,

@PageSize int

AS

DECLARE @TempProducts TABLE

(

ID int IDENTITY,

productid int

)

DECLARE @maxRows int

SET @maxRows = @PageNumber * @PageSize

--在返回指定的行数之后停止处理查询

SET ROWCOUNT @maxRows

INSERT INTO @TempProducts (productid)

SELECT productid

FROM products

ORDER BY productid

SET ROWCOUNT @PageSize

SELECT p.*

FROM @TempProducts t INNER JOIN products p

ON t.productid = p.productid

WHERE ID > (@PageNumber - 1) * @PageSize

SET ROWCOUNT 0

GO

--exec GetProductsByPage 1, 10

--exec GetProductsByPage 5, 10

--4.使用row_number函数

--SQL Server 2005的新特性,它可以将记录根据一定的顺序排列,每条记录和一个等级相关 这个等级可以用来作为每条记录的row index.

if exists(select 1 from sys.objects where name = 'GetProductsByPage' and type = 'P')

drop proc GetProductsByPage

go

CREATE PROCEDURE GetProductsByPage

@PageNumber int,

@PageSize int

AS

select ProductID, ProductName, SupplierID, CategoryID, QuantityPerUnit, UnitPrice, UnitsInStock, UnitsOnOrder, ReorderLevel, Discontinued

from

(select row_number() Over (order by productid) as row,ProductID, ProductName, SupplierID, CategoryID, QuantityPerUnit, UnitPrice, UnitsInStock, UnitsOnOrder, ReorderLevel, Discontinued

from products) as ProductsWithRowNumber

where row between (@PageNumber - 1) * @PageSize + 1 and @PageNumber * @PageSize

go

--exec GetProductsByPage 1, 10

--exec GetProductsByPage 5, 10

3. 在GridView中的应用

复制代码 代码如下:

<%@ Page Language="C#" AutoEventWireup="true" CodeFile="GridViewPaging.aspx.cs" Inherits="GridViewPaging" %>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html xmlns="http://www.w3.org/1999/xhtml" >

<head runat="server">

<title>Paging</title>

</head>

<body>

<form id="form1" runat="server">

<div>

<asp:LinkButton id="lbtnFirst" runat="server" CommandName="First" OnCommand="lbtnPage_Command">|<</asp:LinkButton>

<asp:LinkButton id="lbtnPrevious" runat="server" CommandName="Previous" OnCommand="lbtnPage_Command"><<</asp:LinkButton>

<asp:Label id="lblMessage" runat="server" />

<asp:LinkButton id="lbtnNext" runat="server" CommandName="Next" OnCommand="lbtnPage_Command">>></asp:LinkButton>

<asp:LinkButton id="lbtnLast" runat="server" CommandName="Last" OnCommand="lbtnPage_Command">>|</asp:LinkButton>

转到第<asp:DropDownList ID="dropPage" runat="server" AutoPostBack="True" OnSelectedIndexChanged="dropPage_SelectedIndexChanged"></asp:DropDownList>页

<asp:GridView ID="GridView1" runat="server" AutoGenerateColumns="False" DataKeyNames="ProductID" DataSourceID="SqlDataSource1">

<Columns>

<asp:BoundField DataField="ProductID" HeaderText="ProductID" InsertVisible="False" ReadOnly="True" />

<asp:BoundField DataField="ProductName" HeaderText="ProductName" />

<asp:BoundField DataField="SupplierID" HeaderText="SupplierID" />

<asp:BoundField DataField="CategoryID" HeaderText="CategoryID" />

<asp:BoundField DataField="QuantityPerUnit" HeaderText="QuantityPerUnit" />

<asp:BoundField DataField="UnitPrice" HeaderText="UnitPrice" />

<asp:BoundField DataField="UnitsInStock" HeaderText="UnitsInStock" />

<asp:BoundField DataField="UnitsOnOrder" HeaderText="UnitsOnOrder" />

<asp:BoundField DataField="ReorderLevel" HeaderText="ReorderLevel" />

<asp:CheckBoxField DataField="Discontinued" HeaderText="Discontinued" />

</Columns>

</asp:GridView>

<asp:SqlDataSource ID="SqlDataSource1" runat="server" ConnectionString="Data Source=.\sqlexpress;Initial Catalog=Northwind;Integrated Security=True" ProviderName="System.Data.SqlClient" SelectCommand="GetProductsByPage" SelectCommandType="StoredProcedure" OnSelecting="SqlDataSource1_Selecting" OnSelected="SqlDataSource1_Selected">

<SelectParameters>

<asp:Parameter Name="PageNumber" Type="Int32" />

<asp:Parameter Name="PageSize" Type="Int32" />

</SelectParameters>

</asp:SqlDataSource>

</div>

</form>

</body>

</html>

复制代码 代码如下:

<%@ Page Language="C#" AutoEventWireup="true" CodeFile="GridViewPaging.aspx.cs" Inherits="GridViewPaging" %>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html xmlns="http://www.w3.org/1999/xhtml" >

<head runat="server">

<title>Paging</title>

</head>

<body>

<form id="form1" runat="server">

<div>

<asp:LinkButton id="lbtnFirst" runat="server" CommandName="First" OnCommand="lbtnPage_Command">|<</asp:LinkButton>

<asp:LinkButton id="lbtnPrevious" runat="server" CommandName="Previous" OnCommand="lbtnPage_Command"><<</asp:LinkButton>

<asp:Label id="lblMessage" runat="server" />

<asp:LinkButton id="lbtnNext" runat="server" CommandName="Next" OnCommand="lbtnPage_Command">>></asp:LinkButton>

<asp:LinkButton id="lbtnLast" runat="server" CommandName="Last" OnCommand="lbtnPage_Command">>|</asp:LinkButton>

转到第<asp:DropDownList ID="dropPage" runat="server" AutoPostBack="True" OnSelectedIndexChanged="dropPage_SelectedIndexChanged"></asp:DropDownList>页

<asp:GridView ID="GridView1" runat="server" AutoGenerateColumns="False" DataKeyNames="ProductID" DataSourceID="SqlDataSource1">

<Columns>

<asp:BoundField DataField="ProductID" HeaderText="ProductID" InsertVisible="False" ReadOnly="True" />

<asp:BoundField DataField="ProductName" HeaderText="ProductName" />

<asp:BoundField DataField="SupplierID" HeaderText="SupplierID" />

<asp:BoundField DataField="CategoryID" HeaderText="CategoryID" />

<asp:BoundField DataField="QuantityPerUnit" HeaderText="QuantityPerUnit" />

<asp:BoundField DataField="UnitPrice" HeaderText="UnitPrice" />

<asp:BoundField DataField="UnitsInStock" HeaderText="UnitsInStock" />

<asp:BoundField DataField="UnitsOnOrder" HeaderText="UnitsOnOrder" />

<asp:BoundField DataField="ReorderLevel" HeaderText="ReorderLevel" />

<asp:CheckBoxField DataField="Discontinued" HeaderText="Discontinued" />

</Columns>

</asp:GridView>

<asp:SqlDataSource ID="SqlDataSource1" runat="server" ConnectionString="Data Source=.\sqlexpress;Initial Catalog=Northwind;Integrated Security=True" ProviderName="System.Data.SqlClient" SelectCommand="GetProductsByPage" SelectCommandType="StoredProcedure" OnSelecting="SqlDataSource1_Selecting" OnSelected="SqlDataSource1_Selected">

<SelectParameters>

<asp:Parameter Name="PageNumber" Type="Int32" />

<asp:Parameter Name="PageSize" Type="Int32" />

</SelectParameters>

</asp:SqlDataSource>

</div>

</form>

</body>

</html>

复制代码 代码如下:

using System;

using System.Data;

using System.Configuration;

using System.Collections;

using System.Web;

using System.Web.Security;

using System.Web.UI;

using System.Web.UI.WebControls;

using System.Web.UI.WebControls.WebParts;

using System.Web.UI.HtmlControls;

using System.Data.SqlClient;

public partial class GridViewPaging : System.Web.UI.Page

{

//每页显示的最多记录的条数

private int pageSize = 10;

//当前页号

private int currentPageNumber;

//显示数据的总条数

private static int rowCount;

//总页数

private static int pageCount;

protected void Page_Load(object sender, EventArgs e)

{

if (!IsPostBack)

{

SqlConnection cn = new SqlConnection(System.Configuration.ConfigurationManager.ConnectionStrings["NorthwindConnectionString"].ConnectionString);

SqlCommand cmd = new SqlCommand("GetProductsCount", cn);

cmd.CommandType = CommandType.StoredProcedure;

cn.Open();

rowCount = (int)cmd.ExecuteScalar();

cn.Close();

pageCount = (rowCount - 1) / pageSize + 1;

currentPageNumber = 1;

ViewState["currentPageNumber"] = currentPageNumber;

lbtnPrevious.Enabled = false;

lbtnFirst.Enabled = false;

for (int i = 1; i <= pageCount; i++)

{

dropPage.Items.Add(new ListItem(i.ToString(), i.ToString()));

}

dropPage.SelectedValue = dropPage.Items.FindByValue(currentPageNumber.ToString()).Value;

SqlDataSource1.Select(DataSourceSelectArguments.Empty);

}

}

protected void SqlDataSource1_Selecting(object sender, SqlDataSourceSelectingEventArgs e)

{

SqlDataSource1.SelectParameters["PageNumber"].DefaultValue = currentPageNumber.ToString();

SqlDataSource1.SelectParameters["PageSize"].DefaultValue = pageSize.ToString();

}

protected void SqlDataSource1_Selected(object sender, SqlDataSourceStatusEventArgs e)

{

lblMessage.Text = "共找到" + rowCount + "条记录, 当前第" + currentPageNumber + "/" + pageCount + "页";

}

protected void lbtnPage_Command(object sender, CommandEventArgs e)

{

switch (e.CommandName)

{

case "First":

currentPageNumber = 1;

break;

case "Previous":

currentPageNumber = (int)ViewState["currentPageNumber"] - 1 > 1 ? (int)ViewState["currentPageNumber"] - 1 : 1;

break;

case "Next":

currentPageNumber = (int)ViewState["currentPageNumber"] + 1 < pageCount ? (int)ViewState["currentPageNumber"] + 1 : pageCount;

break;

case "Last":

currentPageNumber = pageCount;

break;

}

dropPage.SelectedValue = dropPage.Items.FindByValue(currentPageNumber.ToString()).Value;

ViewState["currentPageNumber"] = currentPageNumber;

SetButton(currentPageNumber);

SqlDataSource1.Select(DataSourceSelectArguments.Empty);

}

private void SetButton(int currentPageNumber)

{

lbtnFirst.Enabled = currentPageNumber != 1;

lbtnPrevious.Enabled = currentPageNumber != 1;

lbtnNext.Enabled = currentPageNumber != pageCount;

lbtnLast.Enabled = currentPageNumber != pageCount;

}

protected void dropPage_SelectedIndexChanged(object sender, EventArgs e)

{

currentPageNumber = int.Parse(dropPage.SelectedValue);

ViewState["currentPageNumber"] = currentPageNumber;

SetButton(currentPageNumber);

SqlDataSource1.Select(DataSourceSelectArguments.Empty);

}

}

[/code]

using System;

using System.Data;

using System.Configuration;

using System.Collections;

using System.Web;

using System.Web.Security;

using System.Web.UI;

using System.Web.UI.WebControls;

using System.Web.UI.WebControls.WebParts;

using System.Web.UI.HtmlControls;

using System.Data.SqlClient;

public partial class GridViewPaging : System.Web.UI.Page

{

//每页显示的最多记录的条数

private int pageSize = 10;

//当前页号

private int currentPageNumber;

//显示数据的总条数

private static int rowCount;

//总页数

private static int pageCount;

protected void Page_Load(object sender, EventArgs e)

{

if (!IsPostBack)

{

SqlConnection cn = new SqlConnection(System.Configuration.ConfigurationManager.ConnectionStrings["NorthwindConnectionString"].ConnectionString);

SqlCommand cmd = new SqlCommand("GetProductsCount", cn);

cmd.CommandType = CommandType.StoredProcedure;

cn.Open();

rowCount = (int)cmd.ExecuteScalar();

cn.Close();

pageCount = (rowCount - 1) / pageSize + 1;

currentPageNumber = 1;

ViewState["currentPageNumber"] = currentPageNumber;

lbtnPrevious.Enabled = false;

lbtnFirst.Enabled = false;

for (int i = 1; i <= pageCount; i++)

{

dropPage.Items.Add(new ListItem(i.ToString(), i.ToString()));

}

dropPage.SelectedValue = dropPage.Items.FindByValue(currentPageNumber.ToString()).Value;

SqlDataSource1.Select(DataSourceSelectArguments.Empty);

}

}

protected void SqlDataSource1_Selecting(object sender, SqlDataSourceSelectingEventArgs e)

{

SqlDataSource1.SelectParameters["PageNumber"].DefaultValue = currentPageNumber.ToString();

SqlDataSource1.SelectParameters["PageSize"].DefaultValue = pageSize.ToString();

}

protected void SqlDataSource1_Selected(object sender, SqlDataSourceStatusEventArgs e)

{

lblMessage.Text = "共找到" + rowCount + "条记录, 当前第" + currentPageNumber + "/" + pageCount + "页";

}

protected void lbtnPage_Command(object sender, CommandEventArgs e)

{

switch (e.CommandName)

{

case "First":

currentPageNumber = 1;

break;

case "Previous":

currentPageNumber = (int)ViewState["currentPageNumber"] - 1 > 1 ? (int)ViewState["currentPageNumber"] - 1 : 1;

break;

case "Next":

currentPageNumber = (int)ViewState["currentPageNumber"] + 1 < pageCount ? (int)ViewState["currentPageNumber"] + 1 : pageCount;

break;

case "Last":

currentPageNumber = pageCount;

break;

}

dropPage.SelectedValue = dropPage.Items.FindByValue(currentPageNumber.ToString()).Value;

ViewState["currentPageNumber"] = currentPageNumber;

SetButton(currentPageNumber);

SqlDataSource1.Select(DataSourceSelectArguments.Empty);

}

private void SetButton(int currentPageNumber)

{

lbtnFirst.Enabled = currentPageNumber != 1;

lbtnPrevious.Enabled = currentPageNumber != 1;

lbtnNext.Enabled = currentPageNumber != pageCount;

lbtnLast.Enabled = currentPageNumber != pageCount;

}

protected void dropPage_SelectedIndexChanged(object sender, EventArgs e)

{

currentPageNumber = int.Parse(dropPage.SelectedValue);

ViewState["currentPageNumber"] = currentPageNumber;

SetButton(currentPageNumber);

SqlDataSource1.Select(DataSourceSelectArguments.Empty);

}

}

[/code]

4.分页效果图:

时间: 2024-11-10 00:27:38

GridView自定义分页的四种存储过程的相关文章

GridView自定义分页的四种存储过程_MsSql

1. 为什么不使用GridView的默认分页功能 首先要说说为什么不用GridView的默认的分页功能,GridView控件并非真正知道如何获得一个新页面,它只是请求绑定的数据源控件返回适合规定页面的行,分页最终是由数据源控件完成.当我们使用SqlDataSource或使用以上的代码处理分页时.每次这个页面被请求或者回发时,所有和这个SELECT语句匹配的记录都被读取并存储到一个内部的DataSet中,但只显示适合当前页面大小的记录数.也就是说有可能使用Select语句返回1000000条记录,

GridView用存储过程自定义分页分页的完整例子

问题描述 谁有GridView用存储过程自定义分页分页的完整例子(C#)给一个 解决方案 解决方案二:datalist,repeater存储过程分页带1,2,3,4,5,6,7导航的记住把分都给我哦存储过程:直接复制进去CREATEprocup_GetTopicList@a_TableListVarchar(200),@a_TableNameVarchar(30),@a_SelectWhereVarchar(500),@a_SelectOrderIdVarchar(20),@a_SelectOr

GridView分页的实现以及自定义分页样式功能实例

本文为大家详细介绍下GridView实现分页并自定义的分页样式,具体示例代码如下,有想学习的朋友可以参考下哈,希望对大家有所帮助   GridView分页的实现 复制代码 代码如下: 要在GridView中加入 //实现分页 AllowPaging="true" //一页数据10行 PageSize="10" // 分页时触发的事件 OnPageIndexChanging="gvwDesignationName_PageIndexChanging"

WF4.0中四种自定义类型活动

工作流中的活动就像用户自定义的控件,将许多的功能封装起来用.WF4.0中提供了四种可继承的活动 类:CodeActivity .AsyncCodeActivity.Activity.NativeActivity.这几种活动都有自己使用的适合 场合,正确的使用这些活动将非常有利. 1.CodeActivity WF4.0中的活动是树形结构的,创建叶子活动最简单是方式就是使用CodeActivity ,它的逻辑都放在 一个方法:Execute 里面,这个也是四种活动中最简单的一种.这里用一个简单的自

GridView 实现分页问题

问题描述 GridView实现自定义分页的时候不知道为什么需要点两次才显示成功!大虾们帮忙看看.代码如下:<%@PageLanguage="C#"MasterPageFile="~/admin/MasterPage.master"AutoEventWireup="true"CodeFile="AdminView.aspx.cs"Inherits="admin_AdminView"Title="

ASP.NET 2.0数据教程之二十六:排序自定义分页数据

返回"ASP.NET 2.0数据教程目录" 导言 和默认翻页方式相比,自定义分页能提高几个数量级的效率.当 我们的需要对大量数据分页的时候就需要考虑自定义分页,然而实现自定义分页 相比默认分页需要做更多工作.对于排序自定义分页数据也是这样,在本教程中 我们就会扩展前面的例子来实现自定义分页数据的排序. 注意:既然本教 程是基于前一个的,因此我们需要把前面教程示例页面EfficientPaging.aspx的 <asp:Content>元素中的代码复制到本教程SortPara

在ASP.NET 2.0中操作数据之二十六:排序自定义分页数据_自学过程

导言 和默认翻页方式相比,自定义分页能提高几个数量级的效率.当我们的需要对大量数据分页的时候就需要考虑自定义分页,然而实现自定义分页相比默认分页需要做更多工作.对于排序自定义分页数据也是这样,在本教程中我们就会扩展前面的例子来实现自定义分页数据的排序. 注意:既然本教程是基于前一个的,因此我们需要把前面教程示例页面EfficientPaging.aspx的<asp:Content>元素中的代码复制到本教程SortParameter.aspx示例页面中.关于如何进行这样的复制操作请参看为删除数据

基于ASP.NET的自定义分页显示

asp.net|分页|显示 摘要:本文针对WEB数据库记录的显示问题,用实例讨论了在ASP.NET框架下使用DataGrid控件对数据库记录的一种自定义分页显示. 关键词:WEB数据库:ASP.NET:DataGrid:分页 引言 在用户进行数据查询时通常有这样的情况,一个数据库查询将返回太多的行,一致不能在一页中显示.如果用户正在使用一个慢的链接,发送特别大的数据结果可能要花很长的时间.一旦获得了数据,用户可能发现它不包含正确的内容,或者查询范围太大,没有容易的办法检查完所有的结果来找到重要的

ASP.NET 2.0在SQL Server 2005上自定义分页

出处:http://aspnet.4guysfromrolla.com/demos/printPage.aspx?path=/articles/031506-1.aspx 介绍 web开发中普遍会用页面来显示数据.比起整页显示一张报表或者一张数据表的数据给用户,开发者经常用到的是分页显示,每页只显示部分数据,用翻页来控制.在ASPV.NET 1.X里,DataGrid控件使翻页显示变得简单-只需要把属性AllowPaging设置为"true",并在PageIndexChanged事件中