这就是我的应用程序的样子,如您所见,我的用户控件不适合我的面板。如何将我的用户控件放入面板中?
<asp:Panel ID="Panel1" runat="server" Width="500px" BorderColor="#000066"
BorderStyle="Solid">
<uc2:OrderDetail ID="uc_OrderDetail" runat="server" />
</asp:Panel>
在样式中使用“溢出”属性...希望这可以帮助您...
<asp:Panel ID="Panel1" runat="server" Width="500px" BorderColor="#000066" style="overflow:scroll;" BorderStyle="Solid">
<uc2:OrderDetail ID="uc_OrderDetail" runat="server" style="width:100%"/>
</asp:Panel>
您无法将表格放入该表格中,因为表格中有许多文本字段需要宽度。尝试以百分比给出宽度
<asp:Panel ID="Panel1" runat="server" Width="100%" BorderColor="#000066"
BorderStyle="Solid">
<uc2:OrderDetail ID="uc_OrderDetail" runat="server" />
</asp:Panel>