我想阅读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];
但是,当我有这个文件时,所有这些都是零。我在互联网上阅读了所有的想法,我没有解决方案。