vb.net 如何在datagridview中删除多条记录
编程语言:vb.ne建立了一个datagridview,并与数据库进行了绑定。添加一个“删除”按钮,点击此按钮时可将用户选择的多条记录同时删除。删除单条记录的语句是“de...
编程语言:vb.ne 建立了一个datagridview,并与数据库进行了绑定。 添加一个“删除”按钮,点击此按钮时可将用户选择的多条记录同时删除。删除单条记录的语句是“delete * from mydata where id=3”'假如是删除第三条记录。
如果用户选择多条不连续的记录,该 怎么写命令? 展开
如果用户选择多条不连续的记录,该 怎么写命令? 展开
展开全部
这个你只能在gridview中添加一个复选框,也就是多选框,在列表外面也加一个多选框,加一个删除按钮,gridview中选择了几条信息 点击删除 就删除了几条,其中删除按钮中的代码如下
#region 删除
try
{
for (int i = 0; i < this.GridView1.Rows.Count; i++)
{
CheckBox cb = this.GridView1.Rows[i].FindControl("cbcheck") as CheckBox; //cbCheck是gvlist中的单选按钮
if (cb.Checked == true)
{
string sid = GridView1.DataKeys[i].Value.ToString();//得到编号
//删除的sql语句和方法
string sqlstr = "update xinwen set isdelete=1 where id=@id";
Hashtable ht = new Hashtable();
ht.Add("@id", sid);
com.ExecuteSQL(sqlstr, ht);
}
}
setdata();
CheckBox cbAll = (CheckBox)GridView1.HeaderRow.Cells[1].FindControl("cbAll");
cbAll.Checked = false;
}
catch
{
}
#endregion
列表外面的多选框的代码如下图:
try
{
for (int i = 0; i <= GridView1.Rows.Count; i++)
{
CheckBox cb = (CheckBox)GridView1.Rows[i].FindControl("cbcheck");//括号里面的CheckBox1这个是gridview中多选框的id
if (cball.Checked == true)
{
cb.Checked = true;
}
else
{
cb.Checked = false;
}
}
}
catch
{ }
希望你能看明白,这个只要你明白,把这代码复制上去就ok了, 就是删除中的sql语句和方法 要修改一下
#region 删除
try
{
for (int i = 0; i < this.GridView1.Rows.Count; i++)
{
CheckBox cb = this.GridView1.Rows[i].FindControl("cbcheck") as CheckBox; //cbCheck是gvlist中的单选按钮
if (cb.Checked == true)
{
string sid = GridView1.DataKeys[i].Value.ToString();//得到编号
//删除的sql语句和方法
string sqlstr = "update xinwen set isdelete=1 where id=@id";
Hashtable ht = new Hashtable();
ht.Add("@id", sid);
com.ExecuteSQL(sqlstr, ht);
}
}
setdata();
CheckBox cbAll = (CheckBox)GridView1.HeaderRow.Cells[1].FindControl("cbAll");
cbAll.Checked = false;
}
catch
{
}
#endregion
列表外面的多选框的代码如下图:
try
{
for (int i = 0; i <= GridView1.Rows.Count; i++)
{
CheckBox cb = (CheckBox)GridView1.Rows[i].FindControl("cbcheck");//括号里面的CheckBox1这个是gridview中多选框的id
if (cball.Checked == true)
{
cb.Checked = true;
}
else
{
cb.Checked = false;
}
}
}
catch
{ }
希望你能看明白,这个只要你明白,把这代码复制上去就ok了, 就是删除中的sql语句和方法 要修改一下
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询