I am new to ASP.NET MVC and need some help. I have a need to create a form where the form is dynamically created. For example let\'s say I have a model named Person. The
Phil Haack wrote an article on pretty much what you want to do. To have it be dynamic (meaning they can 1 to many people to the list), you'll have to do some JavaScript manipulation by attaching a click event to the add button to copy a new row of the input fields. I first suggest reading through that article first to understand how you need to structure the input fields so that when you post back the list gets populated.