Hi,
I am using asp:gridview. I want to display a textbox and a button to add in the gridview on row 1. on top of all the rows.
could anyone help with it.
I used footer to display at the bottom.
<Columns>
<asp:TemplateField HeaderText="Change Record">
<ItemTemplate>
<asp:ImageButton ID="imgEdit" ImageUrl="~/Images/edit.jpg" ControlStyle-CssClass="btn btn-default" Height="30" Width="60" runat="server" />
<asp:ImageButton ID="imgDelete" ImageUrl="~/Images/Delete_icon.jpg" ControlStyle-CssClass="btn btn-default" Height="30" Width="60" runat="server" />
</ItemTemplate>
<EditItemTemplate>
<asp:ImageButton ID="imgEdit1" ImageUrl="~/Images/edit.jpg" ControlStyle-CssClass="btn btn-default" Height="30" Width=&q ...
Go to the complete details ...