via http://haacked.com/archive/2010/07/16/uploading-files-with-aspnetmvc.aspx
Is there any possibility to dynamicly add <input type="file" name="files" id="file[i]" />
into View (with view model) after clicking button "Add next file", withour reloading page (using jquery)?
Here is main code.
<form action="" method="post" enctype="multipart/form-data">
<label for="file1">Filename:</label>
<input type="file" name="files" id="file1" />
<label for="file2">Filename:</label>
<input type="file" name="files" id="file2" />
<input type="submit" />
</form>
Regards