I have a client that asked me to do a web application that works like this(I can´t add image because I´m new at Stack Overflow and it requires reputation of 10 to do it).
When the page loads, it reads a database table and adds 'email' textboxes for each record.
By clicking in 'NEW' it adds a new textbox.
Upon clicking on Save, if a textbox is modified, it updates the record. And If a new textbox was added, it insert into the table.
I have already done that in Classic Asp with a mix of vb/asp, html with hidden inputs, javascript and SQL database procedures. But for each new form that requires this functionality I found it a too cumbersome work and not very productive.
I´m a bit new to .Net WebForms and completely new to MVC. I wonder if is there a easier way to do this with this technologies?
Thank you