protected void Button1_Click(object sender, EventArgs e) { for (int i = 0; i < GridView1.Rows.Count;i++ ) { CheckBox chk = (CheckBox)GridView1.Rows[i].FindControl("CheckBox1") as CheckBox; } }
protected void Button1_Click(object sender, EventArgs e) { string str=""; for (int i = 0; i < GridView1.Rows.Count;i++ ) { CheckBox chk = (CheckBox)GridView1.Rows[i].FindControl("CheckBox1") as CheckBox; str=chk.SelectedItem.ToString(); } }
var
This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)