vote up 6 vote down star
1

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

flag

3 Answers

vote up 15 vote down check

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|flag
2  
A panel becomes a DIV – Crossbrowser Jan 27 at 13:19
It can become a Span too, dependant on the version of ASP.Net and the browser it's rendering too. – Steven Robbins Jan 27 at 13:21
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 at 13:57
Heh, I tried to force downlevel table rendering out of my mind.. thanks for bringing that back up :-) – Steven Robbins Jan 27 at 14:17
vote up 11 vote down

Hey ansh

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|flag
1  
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 at 15:32
vote up 4 vote down

PlaceHolder control:

Use the PlaceHolder control as a container to store server controls that are dynamically added to the Web page. The PlaceHolder control does not produce any visible output and is used only as a container for other controls on the Web page. You can use the Control.Controls collection to add, insert, or remove a control in the PlaceHolder control.

Panel control:

The Panel control is a container for other controls. It is especially useful when you want to generate controls programmatically, hide/show a group of controls, or localize a group of controls.

The Direction property is useful for localizing a Panel control's content to display text for languages that are written from right to left, such as Arabic or Hebrew.

The Panel control provides several properties that allow you to customize the behavior and display of its contents. Use the BackImageUrl property to display a custom image for the Panel control. Use the ScrollBars property to specify scroll bars for the control.

Render:

PlaceHolder control will render noting, but Panel control will render as a DIV.

More information, please see the following links:

http://msdn2.microsoft.com/en-us/library/system.web.ui.webcontrols.placeholder.aspx (PlaceHolder Class)

http://msdn2.microsoft.com/en-us/library/system.web.ui.webcontrols.panel.aspx (Panel Class)

from: http://forums.asp.net/p/1162201/1929627.aspx#1929627

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.