Is there a difference in overhead between using a Panel or HtmlContainerControl if you need to create a serveride container in ASP.NET.
HtmlContainerControl Container = new HtmlGenericControl("div");
Or
Panel Container = new Panel();
Also, are there differences in how they are displayed in different browsers? I noticed that Panel looks like a div in all browsers that I used.
cweston
source share