如何上传多个文件MVC 3

时间:2012-02-06 15:55:14

标签: c# asp.net-mvc-3

我需要从MVC3上传多个文件。但我没有得到服务器上的变量。这是我的代码。

@using (Html.BeginForm("Index","Register", FormMethod.Post, new { enctype = "multipart/form-data" })) {
         @Html.ValidationSummary(true)
         <table>
              <tr>
                   <td class="label">@Resources.Global.exemploFotos</td>
                   <td><input type="file" name="file" class="multi" accept="gif|jpg" maxlength="3" /></td>
              </tr>
              <tr>
                   <td>&nbsp;</td>
                   <td><input type="submit" value="@Resources.Global.enviar" /></td>
              </tr>
         </table>
    }

控制器:

[HttpPost] public ActionResult Index(IEnumerable<HttpPostedFileBase> fileUpload,  FormCollection collection)  
{
      return View();  
}

但是fileUpload == Null;

2 个答案:

答案 0 :(得分:5)

将输入名称更改为fileUpload。您的文件输入名称是文件。然后,您正在寻找fileUpload来填充您的IEnumerable文件。

答案 1 :(得分:0)

就个人而言,为了允许跨浏览器兼容,我会使用这个答案:Uploading multiple images in the same form using MVC3

当有人在上次克隆文件上传输入中选择文件时,它基本上是克隆文件上传输入