What is the best way for me to build a control that will kinda work like an Access table in ASP.NET?
That is, I define, say, 3 columns. The user can add/edit/remove rows. It can be one row at a time, that's fine. There are other fields on the form too, not related to this table. When the user is done adding rows of information, then they hit 'submit', and at that point, is when I grab all the data out of the control and save to a database (or xml file or whatever).
I've tried to build something with ListView and/or GridView, and I just can't seem to get the behavior I want. Any ideas or examples?