V
VB Programmer
I cannot get my first 2 columns to adhear to my width settings. Any ideas?
The datagrid is defined as:
<aspataGrid id="dgLog" runat="server" Width="990px" Height="96px"
BorderColor="#999999" BorderStyle="None"
BorderWidth="1px" BackColor="White" CellPadding="3"
Font-Names="Verdana" AutoGenerateColumns="False"
GridLines="Vertical" Font-Size="X-Small">
<SelectedItemStyle Font-Bold="True" ForeColor="White"
BackColor="#008A8C"></SelectedItemStyle>
<AlternatingItemStyle BackColor="Gainsboro"></AlternatingItemStyle>
<ItemStyle ForeColor="Black" BackColor="#EEEEEE"></ItemStyle>
<HeaderStyle Font-Names="Verdana" Font-Bold="True"
HorizontalAlign="Center" ForeColor="White"
BackColor="#000084"></HeaderStyle>
<FooterStyle ForeColor="Black" BackColor="#CCCCCC"></FooterStyle>
<Columns>
<asp:BoundColumn DataField="EmailSent" HeaderText="Date Time">
<HeaderStyle Width="150px"></HeaderStyle>
</asp:BoundColumn>
<asp:BoundColumn DataField="Subject" HeaderText="Subject">
<HeaderStyle Width="250px"></HeaderStyle>
</asp:BoundColumn>
<asp:BoundColumn DataField="Recipients" HeaderText="Recipients">
<HeaderStyle Width="250px"></HeaderStyle>
</asp:BoundColumn>
</Columns>
<PagerStyle HorizontalAlign="Center" ForeColor="Black"
BackColor="#999999" Mode="NumericPages"></PagerStyle>
</aspataGrid>
The datagrid is defined as:
<aspataGrid id="dgLog" runat="server" Width="990px" Height="96px"
BorderColor="#999999" BorderStyle="None"
BorderWidth="1px" BackColor="White" CellPadding="3"
Font-Names="Verdana" AutoGenerateColumns="False"
GridLines="Vertical" Font-Size="X-Small">
<SelectedItemStyle Font-Bold="True" ForeColor="White"
BackColor="#008A8C"></SelectedItemStyle>
<AlternatingItemStyle BackColor="Gainsboro"></AlternatingItemStyle>
<ItemStyle ForeColor="Black" BackColor="#EEEEEE"></ItemStyle>
<HeaderStyle Font-Names="Verdana" Font-Bold="True"
HorizontalAlign="Center" ForeColor="White"
BackColor="#000084"></HeaderStyle>
<FooterStyle ForeColor="Black" BackColor="#CCCCCC"></FooterStyle>
<Columns>
<asp:BoundColumn DataField="EmailSent" HeaderText="Date Time">
<HeaderStyle Width="150px"></HeaderStyle>
</asp:BoundColumn>
<asp:BoundColumn DataField="Subject" HeaderText="Subject">
<HeaderStyle Width="250px"></HeaderStyle>
</asp:BoundColumn>
<asp:BoundColumn DataField="Recipients" HeaderText="Recipients">
<HeaderStyle Width="250px"></HeaderStyle>
</asp:BoundColumn>
</Columns>
<PagerStyle HorizontalAlign="Center" ForeColor="Black"
BackColor="#999999" Mode="NumericPages"></PagerStyle>
</aspataGrid>