What is the difference between Panel and PlaceHolder in ASP.NET?

link|improve this question
feedback

4 Answers

up vote 44 down vote accepted

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.

link|improve this answer
5  
A panel becomes a DIV – mbillard Jan 27 '09 at 13:19
1  
It can become a Span too, dependant on the version of ASP.Net and the browser it's rendering too. – Steven Robbins Jan 27 '09 at 13:21
3  
Meh, don't get me started with BrowserCaps - it can also become a single cell table in .Net 1.1 on "Downlevel" browsers. – Zhaph - Ben Duguid Jan 27 '09 at 13:57
1  
Heh, I tried to force downlevel table rendering out of my mind.. thanks for bringing that back up :-) – Steven Robbins Jan 27 '09 at 14:17
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.

  • BackImageUrl: Gets/Sets the background image's URL for the panel

  • HorizontalAlign: Gets/Sets the
    horizontal alignment of the parent's contents

  • Wrap: Gets/Sets whether the
    panel's content wraps

There is a good article at startvbnet here.

link|improve this answer
8  
Another cool feature to an asp:Panel is that it has a DefaultButton property, telling it which button to click if the user presses enter on their keyboard. Handy if you have multiple panels and buttons on the same page that need to work with the enter button. – Alex York Jun 17 '09 at 15:32
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.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown