Hi,<BR><BR> Is it possible to add a row to a bound datagrid? the <BR>page I'm trying to convert has a table where the row <BR>BEFORE the header row contains combo boxes that allow each <BR>column to be filtered for a specific selection. This row <BR>should have the same column width's as the databound <BR>table, so I need to tie them together somehow. If I can't <BR>get it BEFORE the header row, the row right AFTER would be <BR>fine.<BR><BR>Thanks,<BR>Deanna<BR>The code may look like this in the Datagrid<BR>you can add a table with 2 rows and N columns<BR><BR><BR><asp:datagrid id="DGx"<BR> AllowPaging="True" PageSize="1" <BR> OnPageIndexChanged="DGx_ChangePage" <BR> OnCancelCommand="DGx_Cancel"<BR> OnEditCommand="DGx_Edit"<BR> OnSortCommand="DGx_SortColm"<BR> OnUpdateCommand="DGx_Update"<BR> AllowSorting="True"<BR> OnItemCommand="DGx_Others"<BR> AutoGenerateColumns="False"<BR> Width="545px"><BR><BR><PagerStyle NextPageText=">Next" PrevPageText="Prev<" PageButtonCount="1"></PagerStyle><BR><BR><Columns><BR><BR><asp:TemplateColumn FooterText="Footer testing"><BR> <HeaderTemplate><BR> <Table><BR> <tr><BR> <td><asp:dropdownlist id="Dropdownlist3" runat="server"><BR> <asp:ListItem Value=http://aspmessageboard.com/archive/index.php/"A%" Selected="True">By A***</asp:ListItem><BR> <asp:ListItem Value="B%">By B***</asp:ListItem><BR> </asp:dropdownlist></td><BR> </tr><BR> <tr><BR> <td><FONT size="5">By Customer</font></td><BR> <tr><BR> </Table><BR> </HeaderTemplate>