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.
我有一个gridview,它的数据源是一个oracle 数据库。我想知道在 Web 浏览器中显示时如何更改列宽(在 gridview 中)。
谢谢
您可以直接使用 GridView 标签设置列:
<asp:GridView ID="myGrid" runat="server"> <Columns> <asp:BoundField DataField="myColumn" ControlStyle-Width="25%" /> </Columns> </asp:GridView>
您还可以为列分配 CSS 类,然后使用 CSS 设置列宽。