Hi,
I am generating check boxes dynamically but when the code executed i am getting only last check box.
I want the check box click event also but i don't how to fire the check box click event.
public void generatecheckbox()
{
DataTable dt = (DataTable)Session["filterone"];
CheckBox chk = new CheckBox();
var query1 = (from dd in dt.AsEnumerable() group dd by dd.Field<string>("Airlines") into group1 select new {group1.Key,}).Distinct();
for (int i = 0; i < query1.ToList().Count; i++)
{
& ...
Go to the complete details ...