Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.
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);

}
}

Here i used the above code to delete records in datagrid not in gridview using checkbox..........in option"AA" i wrote delete query in backend ........once i selected the checkbox in datagrid then pressed the delete key .....above function is called perfectly but after execution records didint deleted...pls help

share|improve this question

1 Answer

I am not sure about your code but it is better to delete a record from the database and then re-populate dataset.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.