欢迎加入站点基地设计开发交流群:30720409
详细内容
datalist分页与获取行索引
发布日期:2010-01-26     点击:2686     字体:[ ]

DataSet ds=new DataSet();
                 da.Fill(ds,
"asd");
                 PagedDataSource objpage
=new PagedDataSource();
                 objpage.DataSource
=ds.Tables[0].DefaultView;
                 objpage.AllowPaging
=true;
                 objpage.PageSize
=11;
                
int TotalRecord=ds.Tables[0].Rows.Count;
                
int pagecount=(TotalRecord+objpage.PageSize-1)/objpage.PageSize;
                
int curr;
                
if(Request.QueryString["page"]!=null)
                
...{
                     curr
=int.Parse(Request.QueryString["page"]);
                 }

                
else
                
...{
                     curr
=1;
                 }

                 objpage.CurrentPageIndex
=curr-1;
                
if(!objpage.IsFirstPage)
                
...{
                    
this.lnkprv.NavigateUrl=Request.CurrentExecutionFilePath+"?page="+Convert.ToString(curr-1);
<

用户评论
昵称 
内容  *
验证码   
   
相关文章 更多...  
Copyright © 2010 zdbase.com All Rights Reserved. 苏ICP备15039389号 可人软件设计