AspNetPager分页控件

AspNetPager分页控件解决了分页中的很多问题,直接采用该控件进行分页处理,会将繁琐的分页工作变得简单化,下面是我如何使用AspNetPager控件进行分页处理的详细代码:
1.首先到 www.webdiyer.com下载最新的AspNetPager.dll,直接在vs2005中添加引用即可。
2.在页面上注册控件,引入该控件,当然,需要在页面中使用一个数据载体,我这里使用的是repeater控件。
<% @ Register Assembly="AspNetPager" Namespace="Wuqi.Webdiyer" TagPrefix="webdiyer"  %>

<!-- 省略 -->

< Webdiyer:AspNetPager  id ="AspNetPager1"  runat ="server"  HorizontalAlign ="Right"   FirstPageText ="<<"  LastPageText =">>"  PrevPageText ="<"  NextPageText =">"  NumericButtonTextFormatString ="-{0}-"  Width ="600px"

           ShowCustomInfoSection
="Left"  ShowBoxThreshold ="2"  PageSize ="5"   InputBoxClass ="text2"  TextAfterInputBox =""  OnPageChanging ="AspNetPager1_PageChanging"    />
3.cs代码
DataSet ds;
    SqlDataAdapter dr;
    SqlCommand com;

    
protected   void  Page_Load( object  sender, EventArgs e)
    {
        
if  ( ! IsPostBack)
        {
            
string  strconn  =  System.Configuration.ConfigurationManager.ConnectionStrings[ " SperConnectionString1 " ].ToString();
            SqlConnection con 
=   new  SqlConnection(strconn);
            con.Open();
            com 
=   new  SqlCommand();
            com.Connection 
=  con;
            com.CommandText 
=   " select count(*) from Article " ;
            AspNetPager1.AlwaysShow 
=   true ;
            AspNetPager1.PageSize 
=   5 ;
            AspNetPager1.RecordCount 
=  ( int )com.ExecuteScalar();
            con.Close();
            RepeaterDataBind();
        }
    }
    
private   void  RepeaterDataBind()
    {
        
string  strconn  =  System.Configuration.ConfigurationManager.ConnectionStrings[ " SperConnectionString1 " ].ToString();
        dr 
=   new  SqlDataAdapter( " select * from Article " , strconn);
        ds 
=   new  DataSet();
        dr.Fill(ds, AspNetPager1.PageSize 
*  (AspNetPager1.CurrentPageIndex  -   1 ), AspNetPager1.PageSize,  " Article " );
        
this .Repeater2.DataSource  =  ds.Tables[ " Article " ];
        
this .Repeater2.DataBind();

    }

    
protected   void  AspNetPager1_PageChanging( object  src, Wuqi.Webdiyer.PageChangingEventArgs e)
    {
        AspNetPager1.CurrentPageIndex 
=  e.NewPageIndex;
        RepeaterDataBind();
    }
    
protected   string  FormatString_Size_13( string  str)
    {
        
if  (str.Length  >   33 )
        {
            str 
=  str.Substring( 0 32 +   " " ;
        }
        
return  str;
    }
4.最后修改AspNetPager控件的PageChanging事件为AspNetPager1_PageChanging就可以了。

是不是很简单呢?

转载于:https://www.cnblogs.com/zhangyi85/archive/2008/04/12/1150669.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值