如何删除datagrid以及数据库

时间:2009-09-04 13:35:28

标签: c# asp.net

protected void ButtonDelete_Click(object sender, EventArgs e)
{
DataSet ds;

if (Session["location1"] != null)
{
ds = (DataSet)Session["location1"];

//int cnt = ds.Tables[0].Rows.Count;

//for (int i = 0; i < cnt; i++)
//{
//}


foreach (DataGridItem item in DataGrid1.Items)
{
HtmlInputCheckBox chk = new HtmlInputCheckBox();

chk = (HtmlInputCheckBox)item.Cells[0].FindControl("DeleteThis");
if (chk.Checked == true)
{

objaccess.Option = "AA";
string Location = item.Cells[0].Text.ToString();

//objaccess.Locationcode = item.Cells[0].Text.ToString();
// string strop = item.Cells[0].Text.ToString();
objaccess.delInvsItem();
//this.DeleteGridRow(index);

}
}

这里我使用上面的代码删除了datagrid中的记录,而不是使用复选框在gridview中删除记录。在选项“AA”中,我在后端编写了删除查询。一旦我在datagrid中选中了复选框,然后我按下了删除键,上面的函数被完美地调用,但执行后的记录没有被删除。

1 个答案:

答案 0 :(得分:1)

我不确定您的代码,但最好从数据库中删除记录,然后重新填充数据集。