I have a repeater with a checkbox in the item template. During itemdatabound event of the repeater I add an attribute to the checkbox
((CheckBox)e.Item.FindControl("chkPresents")).Attributes.Add("accountName", ((DataRowView)e.Item.DataItem)["accountName"].ToString());
I have a button that suppose to get all the checked checkbox and the account name associated with it.
How can I do this using jquery.
Thanks very much.