Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用一个网格视图,其中包含 7 个文本框和总共 8 列。当我以普通的 Web 表单设计它时,它会正常显示。但是当我将它添加到母版页时,网格视图会穿过母版页边框。我试过改变网格视图控件的边框宽度,但它没有改变。谁能让我知道如何解决这个问题?我只想调整网格视图控件的大小。
您必须将 GridView 放入可滚动面板中:
<asp:Panel ID="Panel2" runat="server" ScrollBars="Both" Width="100%"> <asp:GridView ID="GridView1" runat="server"> </asp:GridView> </asp:Panel>