Hi all,
I have code :
for (int k = 0; k < dt1.Rows.Count;k++ )
{
CheckBox cb = new CheckBox();
cb.ID = "cbx_" + dt1.Rows[k]["AnswerId"].ToString();
cb.Text = dt1.Rows[k]["Answer"].ToString();
cb.Width = Unit.Percentage(40);
tc.Controls.Add(cb);
}
Now, how can i valid at least checkbox is checked in runtime?
Thank you so much !
Go to the complete details ...