I would like to clear and dispose of all the components inside of an asp:panel. I am receiving the error:
cannot convert from 'System.Web.UI.ControlCollection' to 'System.Collections.Generic.IEnumerable'
Heres my code:
List<Control> ctrls = new List<Control>(panelLayout.Controls);
panelLayout.Controls.Clear();
foreach (Control control in ctrls)
{
control.Dispose();
}
Any ideas on what I need to change on line: List ctrls = new List(panelLayout.Controls);
Thanks, Larry