一种方法是:
根据菲尔·哈克http://haacked.com/archive/2010/07/16/uploading-files-with-aspnetmvc.aspx
你可以这样做:
<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>
还有控制器..
[HttpPost]
public ActionResult Index(IEnumerable<HttpPostedFileBase> files) {
foreach (var file in files) {
if (file.ContentLength > 0) {
var fileName = Path.GetFileName(file.FileName);
var path = Path.Combine(Server.MapPath("~/App_Data/uploads"), fileName);
file.SaveAs(path);
}
}
return RedirectToAction("Index");
}
第二种方法:
使用 KendoUI 的上传。它允许同步和异步上传多个文件。
上传可以用作文件输入元素的替代品。
http://demos.kendoui.com/web/upload/index.html
澄清:没有任何版本的 IE 支持多文件选择。