博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
在分页状态下删除纪录的问题
阅读量:1983 次
发布时间:2019-04-27

本文共 1782 字,大约阅读时间需要 5 分钟。

在使用DataGrid分页的时候,正常情况下,绑定数据库列表纪录时会自动产生分页的效果,然而我发觉在删除纪录的时候总会发生"无效的 CurrentPageIndex 值。它必须大于等于 0 且小于 PageCount。"的异常,其实解决这个问题很简单,我们要做的就是在DataGrid1_DeleteCommand事件中判断CurrentPageIndex的值,并根据不同的结果来绑定DataGrid。

 //检索数据库的函数

  public DataSet GetZcbd()
  {
   try
   {
    DataSet ds=new DataSet();   
    string searchString="select id,yy,bj from zc";
    da=new OleDbDataAdapter(searchString,conn);
    da.Fill(ds,"yy");    
    return ds;
   }
   catch
   {
    return null;    
   }  
           
  }

 //绑定DataGrid   

private void BindGrid()
  {
   DataSet ds = new DataSet();
   ds = us.GetZcbd();
   if (ds!=null)
   {
    this.DataGrid1.DataSource = ds;
    this.DataGrid1.DataBind();
   }
   else
   {
    msg.Alert("加载数据错误!",Page);
   }
  }
//删除数据库纪录函数
  public string DeleteZcbd(int bdID)
  {

   int count = this.IfExiseZysx(bdID);//不必理会次句,默认count=1

   if (count <= 0) return "false";
   else
   {
    string sqlStr = "delete from zcwhere id="+bdID;
    OleDbCommand cmd = new OleDbCommand(sqlStr,conn);

    conn.Open();

    try

    {
     cmd.ExecuteNonQuery();
     return "true";
    }
    catch(Exception e)
    {
     return e.Message.ToString();
    }
    finally
    {
     conn.Close();
    }      
   }
  }

// DataGrid1_DeleteCommand事件修改函数  

private void DataGrid1_DeleteCommand(object source, System.Web.UI.WebControls.DataGridCommandEventArgs e)
  {
   int bdID = int.Parse(DataGrid1.DataKeys[(int)e.Item.ItemIndex].ToString());
   string isDel = us.DeleteZcbd(bdID);
   int CurrentPage = 0;
   if (isDel == "true")
   {
    if(this.DataGrid1.CurrentPageIndex == this.DataGrid1.PageCount -1)
    {
   if (this.DataGrid1.CurrentPageIndex == 0)
    {
     this.DataGrid1.CurrentPageIndex = this.DataGrid1.PageCount -1;
    }
    else
    {
     if (this.DataGrid1.Items.Count % this.DataGrid1.PageSize == 1)
     {
      CurrentPage = 2;
     }
     else
     {
      CurrentPage = 1;
     }
     this.DataGrid1.CurrentPageIndex = this.DataGrid1.PageCount - CurrentPage;
    }
   }
    this.BindGrid();
   }
   else
   {
       msg.Alert("删除数据错误!",Page);
   }
 
  }
    注释:msg为一个类似WinForm的messagebox对话框,不必理会。可以使用label.Text代替

转载地址:http://rywvf.baihongyu.com/

你可能感兴趣的文章
apache 开启Rewrite
查看>>
poj1256 dfs(全排列)
查看>>
poj1028 模拟
查看>>
Ubuntu下使用SVN
查看>>
什么是RFC?
查看>>
Fedora下Zend Studio 6.1.2 的配置
查看>>
为什么选择Mapabc
查看>>
基于Mapabc API的周边查询应用
查看>>
Ajax与REST
查看>>
CentOs5.2中PHP的升级
查看>>
git与github在ubuntu下的使用
查看>>
Awstats性能问题及其他工具的对比分析
查看>>
用PHP实现的四则运算表达式计算
查看>>
SMTP的相关命令
查看>>
PhoneGap学习笔记
查看>>
颜色、网页颜色与网页安全色
查看>>
几个移动应用统计平台
查看>>
互联网金融网站走马观花
查看>>
20个Linux服务器安全强化建议(三)
查看>>
Sublimetext3将空格转换为Tab
查看>>