The Panel control provides a container for other controls. This control is rendered as an HTML <DIV> element.
Required properties are noted in boldface type.
<asp:Panel id="Panel1" runat="server" BackImageUrl="url" HorizontalAlign="Center|Justify|Left|NotSet|Right" Wrap="True|False" /> (Other controls declared here) </asp:Panel>
Property | Description |
---|---|
(Base control properties) | The properties defined in Base Web Control Properties. |
BackImageUrl | The URL of an image to display behind the control. |
HorizontalAlign | The alignment of the panel with respect to surrounding text.
When programming, you set this property using the HorizontalAlign enumeration. |
Wrap | True if content should be wrapped within the panel; false othewise. The default is true. |
To be supplied.
See Also