CheckBox chk = grdAssign.Rows[i].Cells[0].FindControl("chkStatus") as CheckBox; if (chk.Checked==true) { clsProjectBO objProject = new clsProjectBO(); objProject.Project_Name = grdAssign.Rows[i].Cells[1].Text; }
if(!IsPostBack) { //code goes here }
if(!IsPostBack){....}
protected void Page_Load(object sender, EventArgs e) { if(!IsPostBack) { //Bind your gridview here } }
var
This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)