
Originally Posted by
Wokawidget
How can a set the widths of these columns???
Woka
Specify the width in the <HeaderStyle> tag. You can specify one for each template column.
e.g
Code:
<asp:TemplateColumn SortExpression="Title" HeaderText="Title">
<HeaderStyle Width="900"></HeaderStyle>
<ItemTemplate>
your stuff here
</ItemTemplate>
</asp:TemplateColumn>