Persistent dynamic control in ASP.Net

<asp:Button onclick="Some_event" Text="Add TextBox" ID="id1" runat="server" /> //once clicked: <asp:TextBox ID="txt1" ……></asp:TextBox> //when clicked again: <asp:TextBox ID="txt1" ……></asp:TextBox> <asp:TextBox ID="txt2" ……></asp:TextBox> //and so on… Is there a way to create dynamic controls which will persist even after the postback? In other words, when the user clicks on the button, a new textbox will be generated … Read more