hi
I want to change the width of column in Gridview bound field but it is not changing .
Code Is
<asp:BoundField DataField="Address" HeaderText="Address" SortExpression="Address"> <ItemStyle Width="500px" /> </asp:BoundField>
thanx
Have you tried?
<asp:GridView ID="dad" runat="server"> <Columns> <asp:BoundField ItemStyle-Width="500px" /> </Columns> </asp:GridView>