My gridview is having a template field bound from the aspx designer. I'm binding a data table to it. Now my template field, which is having few action buttons, are coming on the front. Is there any way to prepend the datatable to it or the otherway around?Code from Designer for the GridView:\[code\]<asp:GridView ID="JobListGrid" runat="server" AutoGenerateColumns="false" ><Columns> <asp:TemplateField HeaderText="Actions"> <ItemTemplate> <div> <asp:ImageButton ID="View" CssClass="imgbutton" ToolTip="View Pdf" runat="server" CommandArgument='<%# DataBinder.Eval(Container, "RowIndex") %>' ImageUrl="~/Content/pdf.PNG" CommandName="View" Width="36" Height="36" OnClientClick='<%# Eval("JobID", "OpenInNewWindow(\"{0}\").ToString()") %>' /> </div> </ItemTemplate> </asp:TemplateField></Columns></asp:GridView>\[/code\]