Posted on: 3/10/2015 3:23:36 PM | Views : 624

Hi,
I currently have a populated gridview, what I want to do is the first line to be a line with empty textbox so I can add a value to that gridview
Currenty this is my gridview, it shows me all the values with add button next to each one

<asp:GridView ID="gdv" runat="server" ShowHeaderWhenEmpty="true" AllowSorting="True" Width="50px" OnSorting="gdv_Sorting" AutoGenerateColumns="False" CssClass="gridview" OnRowDataBound="gdv_RowDataBound" OnDataBound="gdv_DataBound" OnRowCommand="gdv_RowCommand"> <HeaderStyle CssClass="headerstyle" /> <RowStyle CssClass="h ...

Go to the complete details ...