Latest web development tutorials

ASP.NET Panel Wrap property

Control Panel Control Panel

Definition and Usage

Wrap property sets or returns whether the contents of the Panel control wrap.

grammar

<asp:Panel Wrap="TRUE|FALSE" runat="server">
Some Content
</asp:Panel>


Examples

The following examples of the Wrap property is set to Panel control is "FALSE":

<form runat="server">
<asp:Panel ID="Pan1" Width="250px"
Wrap="FALSE" runat="server">

Some content

</asp:Panel>
</form>

The demonstration >>

Control Panel Control Panel