.Net工具 - 使用动软代码生成器快速生成可分页的GridView

简介: GridView虽然自带了分页功能,但我们还是习惯自己来取需要的数据,在此使用了AspNetPager控件,也是免费的,当然不是广告了,也是实验了不少控件后选出来比较适合自己用的,结合代码生成器可快速生成可分页的GridView AspNetPager官方站点:可下载到dll及源代码http://www.
GridView虽然自带了分页功能,但我们还是习惯自己来取需要的数据,在此使用了AspNetPager控件,也是免费的,当然不是广告了,也是实验了不少控件后选出来比较适合自己用的,结合代码生成器可快速生成可分页的GridView

AspNetPager官方站点:可下载到dll及源代码
http://www.webdiyer.com/AspNetPager/default.aspx

分页存储过程如下:根据铁拳的代码稍微修改了一下

USE [××数据库名]
GO
/****** 对象: StoredProcedure [dbo].[GetRecordFromPage] 脚本日期: 03/18/2008 13:35:43 ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO

-- =============================================
/*
函数名称: GetRecordFromPage
函数功能: 获取指定页的数据
参数说明: @tblName 包含数据的表名
@fldName 关键字段名
@PageSize 每页记录数
@PageIndex 要获取的页码
@OrderType 排序类型, 0 - 升序, 1 - 降序
@strWhere 查询条件 (注意: 不要加 where)
作  者: 铁拳
创建时间: 2004-07-04
修改时间: 2007-07-04
*/
-- =============================================
CREATE PROCEDURE [dbo].[GetRecordFromPage]
@tblName varchar(255), -- 表名
@fldName varchar(255), -- 字段名
@PageSize int = 10, -- 页尺寸
@PageIndex int = 1, -- 页码
@IsReCount bit = 0, -- 返回记录总数, 非 0 值则返回
@OrderType bit = 0, -- 设置排序类型, 非 0 值则降序
@strWhere varchar(2000) = '' -- 查询条件 (注意: 不要加 where)
AS

declare @strSQL varchar(6000) -- 主语句
declare @strTmp varchar(1000) -- 临时变量
declare @strOrder varchar(500) -- 排序类型

if @OrderType != 0
begin
set @strTmp = '<(select min'
set @strOrder = ' order by [' + @fldName + '] desc'
end
else
begin
set @strTmp = '>(select max'
set @strOrder = ' order by [' + @fldName +'] asc'
end

set @strSQL = 'select top ' + str(@PageSize) + ' * from ['
+ @tblName + '] where [' + @fldName + ']' + @strTmp + '(['
+ @fldName + ']) from (select top ' + str((@PageIndex-1)*@PageSize) + ' ['
+ @fldName + '] from [' + @tblName + ']' + @strOrder + ') as tblTmp)'
+ @strOrder

if @strWhere != ''
set @strSQL = 'select top ' + str(@PageSize) + ' * from ['
+ @tblName + '] where [' + @fldName + ']' + @strTmp + '(['
+ @fldName + ']) from (select top ' + str((@PageIndex-1)*@PageSize) + ' ['
+ @fldName + '] from [' + @tblName + '] where (' + @strWhere + ') '
+ @strOrder + ') as tblTmp) and (' + @strWhere + ') ' + @strOrder

if @PageIndex = 1
begin
set @strTmp = ''
if @strWhere != ''
set @strTmp = ' where (' + @strWhere + ')'

set @strSQL = 'select top ' + str(@PageSize) + ' * from ['
+ @tblName + ']' + @strTmp + ' ' + @strOrder
end

if @IsReCount != 0
set @strSQL = 'select count(*) as Total from [' + @tblName + ']'+' where ' + @strWhere

exec (@strSQL)


步骤:
1、DAL层中的分页代码如下:

///
/// 分页获取数据列表
///
/// 每页数量
/// 当前页索引
/// 查询字符串
/// 设置排序类型, 非 0 值则降序
///
public DataSet GetList(int PageSize, int PageIndex, string strWhere, string OrderType)
{
SqlParameter[] parameters = {
new SqlParameter("@tblName", SqlDbType.VarChar, 255),
new SqlParameter("@fldName", SqlDbType.VarChar, 255),
new SqlParameter("@PageSize", SqlDbType.Int),
new SqlParameter("@PageIndex", SqlDbType.Int),
new SqlParameter("@IsReCount", SqlDbType.Bit),
new SqlParameter("@OrderType", SqlDbType.Bit),
new SqlParameter("@strWhere", SqlDbType.VarChar,1000),
};
parameters[0].Value = "Accounts_Users";
//2007.11.22 这里修改为按UserName排序
parameters[1].Value = "UserName";
parameters[2].Value = PageSize;
parameters[3].Value = PageIndex;
parameters[4].Value = 0;
parameters[5].Value = int.Parse(OrderType);
parameters[6].Value = strWhere;
return DbHelperSQL.RunProcedure("GetRecordFromPage", parameters, "ds");
}


BLL层中:

///
/// 分页获得数据列表
///
/// 每页数量
/// 当前页索引
/// 查询字符串
/// 设置排序类型, 非 0 值则降序
///
public DataSet GetList(int PageSize, int PageIndex, string strWhere, string OrderType)
{
return dal.GetList(PageSize, PageIndex, strWhere, OrderType);
}


2、在页面上拖一个GridView控件,拖一个AspNetPager控件,
如下:

<webdiyer:AspNetPager id=AspNetPager
CustomInfoHTML="共%RecordCount%条记录 Page %CurrentPageIndex% of %PageCount%  Order %StartRecordIndex%-%EndRecordIndex%"
FirstPageText="首页" HorizontalAlign="Center" InputBoxStyle="width:19px" LastPageText="尾页"
meta:resourcekey="AspNetPager" NextPageText="后页" OnPageChanged="AspNetPager_PageChanged"
PageSize="10" PrevPageText="前页" ShowCustomInfoSection="Left" ShowInputBox="Always"
Style="font-size: 12px" Width="90%">


3、在cs文件中增加以下代码:
PageLoad事件中:

if (!this.IsPostBack)
{
//确定数据数量
HDHG.BLL.Accounts.Accounts_Users blluser = new HDHG.BLL.Accounts.Accounts_Users();
this.AspNetPager.RecordCount = blluser.GetCount(strWhere);
BindGridView();
}


绑定数据函数

///
/// 绑定用户列表
///
private void BindGridView()
{
strWhere = this.lblStrWhere.Text;
HDHG.BLL.Accounts.Accounts_Users blluser = new HDHG.BLL.Accounts.Accounts_Users();
DataSet ds = blluser.GetList(this.AspNetPager.PageSize, this.AspNetPager.CurrentPageIndex, strWhere, "0");
this.myGridView.DataSource = ds;
this.myGridView.DataBind();
}


分页绑定数据:

///
/// 分页绑定数据
///
///
///
protected void AspNetPager_PageChanged(object sender, EventArgs e)
{
this.BindGridView();
}


这样就可以分页了

注:blluser.GetCount()是获取数据数量的方法
lblStrWhere是一个隐藏Label,保存查询条件。也可以不设置这个控件
DataList也可以用这种方法绑定,用熟了就会很方便
目录
相关文章
|
17天前
|
前端开发 JavaScript C#
2款.NET开源且高效的代码格式化工具
2款.NET开源且高效的代码格式化工具
|
17天前
|
存储 开发工具 C#
Git Extensions:一个.NET开源的 Git 图形用户界面(GUI)工具
Git Extensions:一个.NET开源的 Git 图形用户界面(GUI)工具
|
23天前
|
XML 存储 安全
C#开发的程序如何良好的防止反编译被破解?ConfuserEx .NET混淆工具使用介绍
C#开发的程序如何良好的防止反编译被破解?ConfuserEx .NET混淆工具使用介绍
40 0
|
26天前
|
SQL JSON BI
最好的 C# .NET 报告工具
最好的 C# .NET 报告工具
32 0
|
3月前
|
存储 NoSQL Redis
【Azure Developer】一个复制Redis Key到另一个Redis服务的工具(redis_copy_net8)
【Azure Developer】一个复制Redis Key到另一个Redis服务的工具(redis_copy_net8)
【Azure Developer】一个复制Redis Key到另一个Redis服务的工具(redis_copy_net8)
|
2月前
|
网络协议 C#
NSmartProxy:一款.NET开源、跨平台的内网穿透工具
NSmartProxy:一款.NET开源、跨平台的内网穿透工具
|
3月前
|
存储 人工智能 开发框架
一款.NET开发的AI无损放大工具
【8月更文挑战第11天】本示例介绍了一个基于.NET开发的AI无损图像放大工具架构。前端采用WPF或ASP.NET Core构建,提供直观的用户界面;后端包括图片上传、放大处理与结果存储服务。AI模型处理层负责加载预训练模型及图像预测放大。示例代码展示了图片上传与放大服务的关键逻辑,以及WPF界面设计。实际开发需关注模型选择、性能优化、用户体验、格式兼容与部署维护等方面。
|
2月前
|
开发框架 前端开发 JavaScript
ASP.NET MVC 教程
ASP.NET 是一个使用 HTML、CSS、JavaScript 和服务器脚本创建网页和网站的开发框架。
35 7
|
2月前
|
存储 开发框架 前端开发
ASP.NET MVC 迅速集成 SignalR
ASP.NET MVC 迅速集成 SignalR
48 0
|
3月前
|
开发框架 前端开发 .NET
ASP.NET MVC WebApi 接口返回 JOSN 日期格式化 date format
ASP.NET MVC WebApi 接口返回 JOSN 日期格式化 date format
42 0