You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to naidu guruvu, datapoint_...@googlegroups.com
1)first place panel on webform and place muiltiple checkboxes and take
one chcekbox out of panel and set the property autopostback is true
and wrte the below code under out of the checkbox
protected void CheckBox1_CheckedChanged(object sender, EventArgs e)
{
foreach (Control control in Panel1.Controls)
{
if (control is CheckBox)
{
((CheckBox)(control)).Checked = CheckBox1.Checked;
}
}
}