I am putting together a form where some fields may or may not be repeated, for example:
Course 1:
- Course
[input text]
- Institution
[input text]
- Completion year
[input text]
Course 2:
- Course
[input text]
- Institution
[input text]
- Completion year
[input text]
Course ... (n):
In WebForms I would use a asp:repeater
and would get the result by the submit of form, in MVC
is there something equivalent so that I can get the values entered in these inputs dinâmicos
by giving submit
on the page? If it does not exist, could you tell me a way.