hi,
What the use of using table name (buyer) in data set fill method please explain
SqlCommand cc1 = new SqlCommand("delete feedback where Name='" + GridView1.Rows[e.RowIndex].Cells[1].Text + "'", con);
cc1.ExecuteNonQuery();
SqlCommand cmd1 = new SqlCommand("select * from feedback", con);
SqlDataAdapter da1 = new SqlDataAdapter(cmd1);
DataSet ds1 = new DataSet();
da1.Fill(ds1, "buyer");
GridView1.DataSource = ds1.Tables[0];
GridView1.DataBind();
con.Close(); regard
sekar.c
Regards
Sekar.c