RadioButton yes = null;
RadioButton no = null;
GridViewRow row = GV_College_Information1.Rows[i];
yes = (RadioButton)row.FindControl("yes");
no = (RadioButton)row.FindControl("no");
if (yes.Checked && yes!=null)
I'm getting exception at this statement . Anyone plz guide me through this