0

我有网格视图,现在我想为每个单元格设置特定的宽度,我尽力设置每个单元格的宽度,但没有这样做......

这是我应用于模板字段的代码。

<ItemTemplate>
<asp:Label ID="lblempid" runat="server" Text='<%#Eval("EmployeeId") %>'></asp:Label>
<ControlStyle Height="10px" Width="20px" />
</ItemTemplate>

我是 c# 和 ASP.Net 的新手,所以请指导我。

提前致谢。:)

4

1 回答 1

2

你可以这样设置

    <asp:GridView ID="GridView1" runat="server">
        <HeaderStyle Width="10%" />
        <RowStyle Width="10%" />
        <FooterStyle Width="10%" />
        <Columns>
            <asp:BoundField HeaderText="Name" DataField="LastName" 
               ItemStyle-Width="10%"
                 />
        </Columns>
    </asp:GridView>

或者

  int colWidth = 100;
  if (colWidth > 0)
  {
    for (int i = 0; i < GridView1.Columns.Count; i++)
    {
      GridView1.Columns[i].ItemStyle.Width = colWidth;
    }
  }
}
于 2012-09-05T05:56:27.997 回答