阅读Excel文件抛出FormCollection MVC

我想阅读excel文件。我有razor视图

@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]; 

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