I have an aspx page made with ASP.NET Web Forms. What i need to create is two asp:textbox fields. I want to be able to dynamically add two new fields below that with the press of a button.
So basically i want to be able to add an infinite amount of "new" textfields. But i'm not sure how to do this in ASP.NET.
Is there perhaps a way to create an arrat of those textfields? So that when a form is posted i can easily iterate over them?
How can i do this?