Mark This Response as Answer -- Chandu http://www.dotnetfunda.com/images/dnfmvp.gif
protected void btnDelete_Click(object sender, EventARgs e){ foreach(GridViewRow row in Gv.Rows) { CheckBox chk=(CheckBox)row.FindControl("chk"); if(chk.Checked) { //perform delete action on here. } }}
Login to post response