©
Ce document utilise Manuel du site Web PHP chinois Libérer
Wrap 属性用于设置或返回在 Panel 控件中内容是否折行。
<asp:Panel Wrap="TRUE|FALSE" runat="server">
Some Content
</asp:Panel>
下面的实例把 Panel 控件中的 Wrap 属性设置为 "FALSE":
<form runat="server">
<asp:Panel ID="Pan1" Width="250px"
Wrap="FALSE" runat="server">
Some content
</asp:Panel>
</form>