AspNetPager 高效分页

今晚手痒,写了点代码,温习了一下AspNetPager 这个免费的分页控件

aspx页面部分代码:

<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="WebForm1.aspx.cs" Inherits="LearningAspNet.无刷新分页.WebForm1" %> <%@ Register assembly="AspNetPager" namespace="Wuqi.Webdiyer" tagprefix="webdiyer" %> <!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>AspNetPager+存储过程完成分页</title> </head> <body> <form id="form1" runat="server"> <div> <asp:Repeater ID="Repeater1" runat="server" onitemcommand="Repeater1_ItemCommand" onitemdatabound="Repeater1_ItemDataBound" > <HeaderTemplate><!--头模板--> <table><tr> <td>学生编号</td> <td>学生姓名</td> <td>学生性别</td> <td align="center">操 作</td> </tr> </HeaderTemplate> <ItemTemplate><!--项模板--> <tr> <td><%#Eval("sid") %></td> <td><%#Eval("sname") %></td> <td><%#Eval("ssex") %></td> <td><asp:Button ID="Button1" runat="server" Text="Button" CommandName="btn" CommandArgument='<%#Eval("sid") %>' /> </td></tr> </ItemTemplate> <AlternatingItemTemplate ><!-- 交替行--> <tr style="background-color:Aqua" mce_style="background-color:Aqua"> <td><%#Eval("sid") %></td> <td><%#Eval("sname") %></td> <td><%#Eval("ssex") %></td> <td> <asp:Button ID="Button1" runat="server" Text="Button" CommandName="btn" CommandArgument='<%#Eval("sid") %>'/> </td> </tr> </AlternatingItemTemplate> <FooterTemplate><!--脚模板--> </table> </FooterTemplate> </asp:Repeater> <asp:Label ID="Label1" runat="server" Text=""></asp:Label> </div> <webdiyer:AspNetPager ID="AspNetPager1" runat="server" OnPageChanged="AspNetPager1_PageChanged"> </webdiyer:AspNetPager> </form> </body> </html>

.cs后台部分代码:

using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Web.UI; using System.Web.UI.WebControls; using System.Data; using System.Data.SqlClient; using System.Configuration; namespace LearningAspNet.无刷新分页 { public partial class WebForm1 : System.Web.UI.Page { string connStr = ConfigurationManager.ConnectionStrings["studentConnectionString"].ToString(); protected void Page_Load(object sender, EventArgs e) { if (!IsPostBack) { bind(); } } /// <summary> /// 绑定数据 /// </summary> private void bind() { this.AspNetPager1.RecordCount = getRecordCount();//总记录数 int curPage = this.AspNetPager1.CurrentPageIndex;//当前页的索引 int count = this.AspNetPager1.PageSize=3;//每页显示条数 Repeater1.DataSource = getData(curPage, count, "stuinfo", "sid"); Repeater1.DataBind(); } /// <summary> /// 获取数据源 /// </summary> /// <param name="curPage">当前页</param> /// <param name="count">每页显示的条数</param> /// <param name="tblName">表名</param> /// <param name="colum">主键(标识)</param> /// <returns></returns> private DataSet getData(int curPage,int count,string tblName,string colum) { SqlConnection conn = new SqlConnection(connStr); try { conn.Open(); DataSet ds = new DataSet(); SqlCommand cmd = new SqlCommand(); SqlDataAdapter da = new SqlDataAdapter(cmd); cmd.Connection = conn; cmd.CommandType = CommandType.StoredProcedure; cmd.CommandText = "page"; //给存储过程添加参数 cmd.Parameters.Add(new SqlParameter("@currentPage", SqlDbType.Int)); cmd.Parameters.Add(new SqlParameter("@count", SqlDbType.Int)); cmd.Parameters.Add(new SqlParameter("@tableName", SqlDbType.VarChar)); cmd.Parameters.Add(new SqlParameter("@column", SqlDbType.VarChar)); //给参数赋值 da.SelectCommand.Parameters["@currentPage"].Value = curPage; da.SelectCommand.Parameters["@count"].Value = count; da.SelectCommand.Parameters["@tableName"].Value = tblName; da.SelectCommand.Parameters["@column"].Value = colum; // da.SelectCommand = cmd; da.Fill(ds); return ds; } catch (Exception) { throw; } finally { conn.Close(); } } /// <summary> /// 查询总记录数 /// </summary> /// <returns></returns> private int getRecordCount() { int i = 0; SqlConnection conn = new SqlConnection(connStr); conn.Open(); string sql = "select count(*) from stuinfo";//查询处总记录数 SqlDataAdapter da = new SqlDataAdapter(sql,conn); object obj = da.SelectCommand.ExecuteScalar();//查询结果的第一行第一列 --总记录条数 i = int.Parse(obj.ToString());//总记录条数 conn.Close(); return i; } /// <summary> /// 翻页事件 /// </summary> /// <param name="sender"></param> /// <param name="e"></param> protected void AspNetPager1_PageChanged(object sender, EventArgs e) { bind(); } /// <summary> /// DataList控件中点击任意一列的按钮会发生 /// </summary> /// <param name="source"></param> /// <param name="e"></param> protected void Repeater1_ItemCommand(object source, RepeaterCommandEventArgs e) { if (e.CommandName=="btn") { Label1.Text ="我的学号是"+ e.CommandArgument.ToString(); Label1.Style["color"] = "red"; } } /// <summary> /// 每一项绑定的时候 /// </summary> /// <param name="sender"></param> /// <param name="e"></param> protected void Repeater1_ItemDataBound(object sender, RepeaterItemEventArgs e) { if (e.Item.ItemType==ListItemType.Item) { Button btn = (Button)e.Item.FindControl("Button1");//找到按钮 btn.Text = "汇报"; }else if(e.Item.ItemType==ListItemType.AlternatingItem) { Button btn = (Button)e.Item.FindControl("Button1"); btn.Text = "汇报"; } } } }

数据库部分:分页的存储过程:

--存储过程实现灵活的分页
if object_id('page','p') is not null
drop proc page
go
create proc page
@currentPage int=1,--要查询第几页
@count int=10,--每页显示几条
@tableName varchar(20),--表名
@column varchar(20)--列名
as
declare @sql nvarchar(1000)
set @sql = N'select top '+ cast(@count as nvarchar(3))
set @sql=@sql+N' * from '+@tableName+' where '+@column+' not in('
set @sql=@sql+N'select top '+cast(((@currentPage-1)*@count) as nvarchar(3))
set @sql=@sql+@column+N' from '+@tableName+')'

exec(@sql)
go
exec page 1,2,'stuinfo','sid' --测试存储过程

AspNetPager7.2分页控件及Demo源码 分页是Web应用程序中最常用到的功能之一,在ASP.NET中,虽然自带了一个可以分页的DataGrid(asp.net 1.1)和GridView(asp.net 2.0)控件,但其分页功能并不尽如人意,如可定制性差、无法通过Url实现分页功能等,而且有时候我们需要对DataList和Repeater甚至自定义数据绑定控件进行分页,手工编写分页代码不但技术难度大、任务繁琐而且代码重用率极低,因此分页已成为许多ASP.NET程序员最头疼的问题之一。 AspNetPager针对ASP.NET分页控件的不足,提出了与众不同的解决asp.net中分页问题的方案,即将分页导航功能与数据显示功能完全独立开来,由用户自己控制数据的获取及显示方式,因此可以被灵活地应用于任何需要实现分页导航功能的地方,如为GridView、DataList以及Repeater等数据绑定控件实现分页、呈现自定义的分页数据以及制作图片浏览程序等,因为AspNetPager控件和数据是独立的,因此要分页的数据可以来自任何数据源,如SQL Server、Oracle、Access、mysql、DB2等数据库以及XML文件、内存数据或缓存中的数据、文件系统等等。 AspNetPager 7.2 版发布 新增属性 PagingButtonLayoutType,可设置分页导航元素(数字页索引、上页、下页、首页和尾页)的布局方式,该属性值是一个PagingButtonLayoutType枚举,通过设置该属性为PagingButtonLayoutType.UnorderedList或PagingButtonLayoutType.Span,允许将这些分页导航元素包含在 与或与标签之间,以便于为这些分页元素应用CSS样式。 新增 PagingButtonClass 与 PagingButtonStyle 属性,可以单独为分页导航按钮(数字页索引、上页、下页、首页和尾页)设置CSS样式; 新增 FirstLastButtonClass 与 FirstLastButtonStyle 属性,可以单独为首页和尾页分页导航按钮设置CSS样式,如果该属性未设置,但指定了PagingButtonClass 与 PagingButtonStyle 属性的值,则首页和尾页按钮样式将使用 PagingButtonClass 与 PagingButtonStyle 属性中指定的样式; 新增 NextPrevButtonClass 与 NextPrevButtonStyle 属性,可以单独为上页和下页分页导航按钮设置CSS样式,如果该属性未设置,但指定了PagingButtonClass 与 PagingButtonStyle 属性的值,则上页和下页按钮样式将使用 PagingButtonClass 与 PagingButtonStyle 属性中指定的样式; 新增 MoreButtonClass 与 MoreButtonStyle 属性,可以单独为更多页(...)分页导航按钮设置CSS样式,如果该属性未设置,但指定了PagingButtonClass 与 PagingButtonStyle 属性的值,则上页和下页按钮样式将使用 PagingButtonClass 与 PagingButtonStyle 属性中指定的样式; 新增属性 ShowMoreButtons ,可以指定是否显示更多页按钮; 新增属性 CurrentPageButtonPosition ,可设置在每次分页后,当前页数字索引在所有的数字页索引中的显示位置,该属性值是一个PagingButtonPosition枚举,对应的值及说明如下: Beginning:当前页数字索引总是显示在所有数字页索引的最前面; End:当前页数字索引总是显示在所有数字页索引的最后面; Center:当前页数字索引总是显示在所有数字页索引的中间; Fixed:默认值,固定不变; 控件的CssClass属性仅应用于控件的窗口元素(div),将不再应用于下属分页元素; 废止属性CenterCurrentPageButton,可以用CurrentPageButtonPosition属性取代; 修改CurrentPageIndexn属性,允许在程序中任何地方以编程方式设置CurrentPageIndex的值来动态指定当前页,直接设置该属性的值时将同时引发PageChanging和PageChanged 事件,实现和点击分页按钮一样的分页功能; 修正了7.1版中设置SubmitButtonImageUrl属性后,Postback回发分页方式情况下点击数字页索引按钮不引发分页事件的bug; 修正了使用Url分页时,如果页面上没有服务器端form控件时无法注册客户端脚本的bug,从7.2版起如果使用Url分页并且ShowPageIndexBox属性没有设置为Never时, AspNetPager控件必须放在 与 标记之间,若使用Url分页并且ShowPageIndexBox为Never时,页面上可以不使用服务器端form控件。 AspNetPager的主要功能: 1、支持通过Url进行分页AspNetPager除提供默认的类似于DataGrid和GridView的PostBack分页方式外,还支持通过Url进行分页,象大多数asp程序中分页一样, Url分页方式允许用户通过在浏览器地址栏中输入相应的地址即可直接进入指定页面,也可以使搜索引擎搜索到所有分页的页面的内容,因此具有用户友好和搜索引擎友好的优点,关于Url分页与PostBack分页方式的差异,请参考Url与PostBack分页方式的对比。 2、支持Url分页方式下的Url重写(UrlRewrite)功能 Url重写技术可以使显示给用户的Url不同于实际的Url,Url重写技术被广泛应用于搜索引擎优化(SEO)、网站重组后重定向页面路径以及提供用户友好的Url等方面, AspNetPager支持Url重写技术使您可以自定义分页导航的Url格式,实现Url重写; 3、支持使用用户自定义图片做为导航元素: 您可以使用自定义的图片文件做为分页控件的导航元素,而不仅仅限于显示文字内容。 4、功能强大灵活、使用方便、可定制性强: AspNetPager分页控件的所有导航元素都可以由用户进行单独控制,从6.0版起,AspNetPager支持使用主题(Theme)与皮肤(Skin)统一控件的整体样式,配合asp.net 2.0中的DataSource控件,AspNetPager只需要编写短短几行代码,甚至无需编写任何代码,只需设置几个属性就可以实现分页功能。 5、增强的 Visual Studio 2005/2008设计时支持 增强的设计时支持使控件在设计时更加直观,易于使用,开发快捷方便。 6、兼容IE6.0+及FireFox 1.5+等浏览器 7、丰富而完整的控件文档和示例项目: 控件附带的完整的帮助文档及示例项目能够帮助您快速上手,熟悉AspNetPager控件的使用,您还可以通过给作者留言以及论坛提问等方式解决控件使用中遇到的问题。 AspNetPager72Src下为AspNetPager组件源码 作者:webdiyer
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值