I have made a form in which I have two fields, Name and Products. Beside Products I have taken a Textbox and a button. I am allowing my user to add more than one textbox and the limit is upto 5 textbox's. Now I am inserting data from this form into my SQL Database. And Now I want to fetch the data from table and display into the respective Textbox's. I have tried doing this-
<div> <table border="1" width="1000px"> <tr><td colspan="2" align="center"><b>Inserting Data Into Table</b></td></tr> <tr> <td class="style1">Name: </td> <td class="style2"> <asp:TextBox ID="TextBox1" runat="server"></asp:TextBox></td> </tr> <tr> <td class="style1">Add Text Box: </td> <td class="style2"> ...

Go to the complete details ...