fixed width of all cells in datagrid
ASP.NET
3
Posts
3
Posters
0
Views
1
Watching
-
How can i fix height or width of a cell in datagrid. i wants all cells should have the same width ; height may differ in a datagrid.
You could try setting a
Width
on theItemStyle
- something like this:<asp:DataGrid id="myGrid" runat="server">
<ItemStyle Width="100" />
</asp:DataGrid> -
You could try setting a
Width
on theItemStyle
- something like this:<asp:DataGrid id="myGrid" runat="server">
<ItemStyle Width="100" />
</asp:DataGrid>