Basically I have a form and I am opening a window (modal) with a list of employees and by javascript I can add the email of the same in the form that will be saved, in another language in this case I would solve creating the input of emails like this:
< input name="email[ ]" />
In Controller I would get this email[]
tag with all the emails added, already in ASP.NET I do not know what would be the best way to make a screen so I tried to do the same but in the controller the parameter (formColletion) of the Post does not arrive as an email array, it understands only as a single field.
Note: I wanted to resolve without AJAX.