What is the difference between Panel and PlaceHolder in ASP.NET?
|
feedback
|
|
A panel expands to a span (or a div), with it's content within it. A placeholder is just that, a placeholder that's replaced by whatever you put in it. | |||||||||||||||||
feedback
|
|
The Placeholder does not render any tags for itself, so it is great for grouping content without the overhead of outer HTML tags. The Panel does have outer HTML tags but does have some cool extra properties.
There is a good article at startvbnet here. | |||||
feedback
|
|
PlaceHolder Class http://msdn2.microsoft.com/en-us/library/system.web.ui.webcontrols.placeholder.aspx Panel Class http://msdn2.microsoft.com/en-us/library/system.web.ui.webcontrols.panel.aspx | ||||
|
feedback
|
|
I weird bug* in visual studio 2010, if you put controls inside a Placeholder it does not render them in design view mode. This is especially true for Hidenfields and Empty labels. I would love to use placeholders instead of panels but I hate the fact I cant put other controls inside placeholders at design time in the GUI. | |||
|
feedback
|