首页 > 编程 > .NET > 正文

ASP.Net中DataGrid翻页后继续保持(当前排序)显示

2024-07-10 13:12:01
字体:
来源:转载
供稿:网友

要想实现翻页后继续排序,实现这样的效果:
比如共 15笔记录,每页显示10条
则排序时:第一页将前10条记录排序,翻第二页时后五条再单独排序.

要注意以下几点:
1.如果数据很多,最好不要把数据集放到缓存中(viewstate),影响性能

2. viewstate中存放上次是哪个e.expression并且存放此e.expression是升序还是降序

示例如下:
1.现有的排序事件是这样写的,这个是点击上面排序标题时用:
  private void grdprojtrace_sortcommand(object source, datagridsortcommandeventargs e)
{
 this.grdprojtrace.currentpageindex = 0;
 dataview dv = 得到数据代码;
 string strsort = "";
 string strorder ="";//排序方式。0,降序,1升序
 if(viewstate["sortexpresstion"] != null)
 {
  strsort = viewstate["sortexpresstion"].tostring();
  strsort = strsort.substring(0,strsort.length -1);
  strorder = viewstate["sortexpresstion"].tostring();
  strorder = strorder.substring(strorder.length -1);
 }
 if(e.sortexpression == "customername")
 {
  if(strsort != "customername")
  {
   this.viewstate["sortexpresstion"] = ustomername0";
   dv.sort = "customername desc";
  }
  else
  {
   if(strorder == "0")
   {
    this.viewstate["sortexpresstion"] = "customername1";
    dv.sort = "customername asc";
   }
   else
   {
    this.viewstate["sortexpresstion"] = "customername0";
    dv.sort = "customername desc";
   }
  }
 }
if(e.sortexpression == "fullname")
 {
  if(strsort != "fullname")
  {
   this.viewstate["sortexpresstion"] = "fullname0";
   dv.sort = "fullname desc";
  }
  else
  {
   if(strorder == "0")
   {
    this.viewstate["sortexpresstion"] = "fullname1";
    dv.sort = "fullname asc";
   }
   else
   {
    this.viewstate["sortexpresstion"] = "fullname0";
    dv.sort = "fullname desc";
   }
  }
 }   
        this.grdprojtrace.datasource = dv;
 this.grdprojtrace.databind();
}

2.下面这个方法是自己写的,翻页事件中调用。
private void changepagedatabind()  
{
 dataview dv = 得到数据代码;
 string strsort = "";
 string strorder ="";//排序方式。0,降序,1升序
 if(viewstate["sortexpresstion"] != null)
 {
  strsort = viewstate["sortexpresstion"].tostring();
  strsort = strsort.substring(0,strsort.length -1);
  strorder = viewstate["sortexpresstion"].tostring();
  strorder = strorder.substring(strorder.length -1);
 }
 if(this.viewstate["sortexpresstion"] != null)
 {    
  if(strsort == "customername")
  {
   if(strorder == "1")
   {
    this.viewstate["sortexpresstion"] = "customername1";
    dv.sort = "customername asc";
   }
   else
   {
    this.viewstate["sortexpresstion"] = "customername0";
    dv.sort = "customername desc";
   }
  }
 }
 if(this.viewstate["sortexpresstion"] != null)
 {    
  if(strsort == "fullname")
  {
   if(strorder == "1")
   {
    this.viewstate["sortexpresstion"] = "fullname1";
    dv.sort = "fullname asc";
   }
   else
   {
    this.viewstate["sortexpresstion"] = "fullname0";
    dv.sort = "fullname desc";
   }
  }
 }   
this.grdprojtrace.datasource = dv;
this.grdprojtrace.databind();
}

上面两方法只要修改要排序的字段名,就可以直接调用了.
1方法很简单使用,这里就不说了.
2方法是这样用的:
private void grdprojtrace_pageindexchanged(object source, datagridpagechangedeventargs e)
{
 try
 {    
  try
  {
     this.grdprojtrace.currentpageindex = e.newpageindex;
  }
  catch
  {
   this.grdprojtrace.currentpageindex = 0;
  }

  
  this.changepagedatabind();
 }
 catch(system.exception errws)
 {  
         //异常
 }
}

谢谢阅读!



发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表