读取Excel文件抛出FormCollection MVC

时间:2016-07-01 09:57:06

标签: c# excel

我想阅读excel文件。我有 razor view

@using (Html.BeginForm("ImportData", "Sourced", FormMethod.Post, new { enctype = "multipart/form-data" }))

控制器

  public ActionResult ImportData(FormCollection formCollection)

 HttpPostedFileBase file = Request.Files["UploadFile"];
 byte[] fileBytes = new byte[file.ContentLength];

但是,当我有这个文件时,所有这些都是零。我在互联网上阅读了所有的想法,我没有解决方案。

0 个答案:

没有答案