foreach(System.Web.UI.WebControls.GridViewRow gv in this.GridView1.Rows ){ CheckBox chk = (CheckBox)gv.FindControl("CheckBox1"); if(chk.Checked){ Response.Write(gv.Cells[0].Text); } }