Hi. I am looking for a .NET solution on how to make a form where I can add rows dynamically without pushing data to a database before every row (e.g. participants) have been registered. I know one solution is to add an insert-row at the bottom of a gridview, but this is not very intuitive for my users and requires pushing data to a database which creates a lot of requests to the database.
I have created a simple javascript-solution to my problem and you might want to see it at: http://www.absentia.no/kalender.html (don't mind the look of it... it's very simple.) However, I still want this done with .NET-elements, like <asp:TextBox... /> since these give better performance when using codebehind and provide the opportunity to use custom user controls. Does any of you know of a solution where I can achieve the same instant dynamic form (excluding the aforementioned gridview solution...)? Looking forward to your replies. Best regards, royend
