通过http://haacked.com/archive/2010/07/16/uploading-files-with-aspnetmvc.aspx
单击“添加下一个文件”按钮后,是否有可能动态添加<input type="file" name="files" id="file[i]" />
到视图(使用视图模型),而我们的重新加载页面(使用 jquery)?
这是主要代码。
<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>
问候