Gridview列宽改变

发布于 2024-07-13 17:30:18 字数 86 浏览 5 评论 0原文

我有一个gridview,其数据源是oracle数据库。 我想知道当它在网络浏览器中显示时如何能够更改列宽(在网格视图中)。

谢谢

I have a gridview whose datasource is an oracle database.
I want to know how to be able to change column width (in the gridview) when it is being displayed in the web browser.

Thank you

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

醉态萌生 2024-07-20 17:30:18

您可以直接使用 GridView 标签设置列:

<asp:GridView ID="myGrid" runat="server">
  <Columns>
    <asp:BoundField DataField="myColumn" ControlStyle-Width="25%" />
  </Columns>
</asp:GridView>

您还可以为列分配一个 CSS 类,然后使用 CSS 设置列宽。

You can set the column directly with the GridView tag:

<asp:GridView ID="myGrid" runat="server">
  <Columns>
    <asp:BoundField DataField="myColumn" ControlStyle-Width="25%" />
  </Columns>
</asp:GridView>

You could also assign the column a CSS class, and then use CSS to set the column width.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文