2
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 the emails so:
< input name="email[ ]" />
At Controller I would get this tag email[]
with all the emails added, already in Asp.net do not know what would be the best way to make a screen like this, I tried to do the same but in the controller the parameter(formColletion) Post does not arrive as an e-mail array, it understands only as a single field.
Note: I wanted to solve without AJAX.