1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
| <asp:GridView ID="GridView1" runat="server" AutoGenerateColumns="False" BackColor="White"
BorderColor="#CCCCCC" BorderStyle="None" BorderWidth="1px" CellPadding="3" DataSourceID="SqlDataSourceRegionnalRemote"
Height="119px" Style="left: 167px; position: absolute; top: 176px" Width="212px" Font-Names="Tahoma" Font-Size="Small">
<FooterStyle BackColor="White" ForeColor="#000066" />
<Columns>
<asp:BoundField DataField="CA_Name" HeaderText="Competency Area" SortExpression="CA_Name" />
<asp:BoundField DataField="Week" HeaderText="Week" SortExpression="Week" >
<ItemStyle HorizontalAlign="Right" />
<HeaderStyle HorizontalAlign="Right" />
<FooterStyle HorizontalAlign="Right" />
</asp:BoundField>
<asp:BoundField DataField="Year" HeaderText="Year" SortExpression="Year" />
</Columns>
<RowStyle ForeColor="#000066" />
<SelectedRowStyle BackColor="#669999" Font-Bold="True" ForeColor="White" />
<PagerStyle BackColor="White" ForeColor="#000066" HorizontalAlign="Left" />
<HeaderStyle BackColor="#006699" Font-Bold="True" ForeColor="White" />
</asp:GridView> |