Event handling for dynamically generated Checkbox
Hi,
I am creating checkboxes as no. of the records stored in database with Repeater control. I want to add event with these check boxes.
If I check any of the check box,it should fire a common event say
Private void Check_Click()
{
Label1.Text = "Checkbox is checked";
}
Pl guide me how can I track the event of these check box.
Thanks,
Manish
|