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>
よろしく