foreach (RepeaterItem item in this.Repeater_admin.Items )
{
CheckBox check = (CheckBox)item.FindControl("CheckBox1");
if (check != null)
{
check.Checked = true;
}
}
{
CheckBox check = (CheckBox)item.FindControl("CheckBox1");
if (check != null)
{
check.Checked = true;
}
}