I have an ASP.NET page that requires the ability to have users enter multiple records. What I would like is to display a collection of textboxes with an add button below. Each time a user clicks the add button, a new, identical collection of textboxes will be added to the page. Then, when the user clicks submit, each collection of textboxes can be examined, the data extracted, and saved to the database.
Note that the users will only be inserting data to the database. Not editing or updating of records is allowed.
The problem is that each asp.net control I've looked at (Repeater, Formview, etc) requires the control to be databound. However, I would rather not have this. I just want a control to collect the information so I can read through it at the end and do my own inserting into the database. Any ideas on how to easily accomplish this? If necessary, I'll go with databinding to a table, but I figured I'd ask first.