Hi..
I am populating my gridview as follows:-
protected void Button1_Click(object sender, EventArgs e)
{
string con = ConfigurationManager.ConnectionStrings["ConnectionString"].ConnectionString;
SqlDataAdapter sda = new SqlDataAdapter("Select * from DropDownFilter", con);
sda.Fill(dt);
GridView1.DataSource = dt;
GridView1.DataBind();
}
and then i have checkbox for every row now i want to delete the checked rows on another button event,how can i achieve this??
Can anyone please help me??