Insert Dynamic Rows in GridView with TextBoxes in Asp.Net with C# Techmomin It solutions Demonstrate example on how to generate a Row in GridView with TextBoxes when clicking a Add New row Button that is residing inside the GridView footer. Step 1 : Copy and Past below code on Default.aspx page 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 <asp:GridView ID="Gridview1" runat="server" ShowFooter="true" AutoGenerateColumns="false"> <Columns> <asp:BoundField DataField="RowNumber" HeaderText="Row Number" /> <asp:TemplateField HeaderText="Header 1"> <ItemTemplate> <asp:TextBox ID="TextBox1" runat="server"></asp:TextBox> </ItemTemplate> </asp:TemplateField> <asp:TemplateField HeaderText="Header 2"> <ItemTemplate> <asp:TextBox ID="TextBox2" runat="server"></asp:TextBox> </ItemTemplate> </asp:TemplateField>Read More →The post Insert Dynamic Rows in GridView with TextBoxes in Asp.Net with C# appeared first on TechMomin .