I have a form of contact info as follows:
Name: input Email : input
Add More
if the user want to add another Name and Email, she can click on Add More and she will see another set of Name and email input boxes.
How do you handle this with MVC at controller side?
public ActionResult Process(IEnumerable<Contact> contacts){
.... ???
or If i need a model binding, how can i get this done, what should my model be?