0

私は単にこれを試しましたが、うまくいきません。何が問題なのか、

私のインデックスページ:

 @{
 ViewBag.Title = "Index";
 }

  @using (Html.BeginForm("Upload", "Home", FormMethod.Post, new { enctype = "multipart/from-    data" }))
    { 
       <div>
       <h1 style="align-content: center; color: blueviolet">Application to upload files</h1>
       </div>
       <div>
       <input type="file" id="file" name="file" />
       <br />
       <input type="submit" id="load" name="submit" value="Submit" />
       </div>

       }

そして、私のコントローラーは、

                  [HttpPost]
    public ActionResult Upload()
    {
        string path = @"~/Content/Upload";

        HttpPostedFileBase file = Request.Files["file"];

        if (file != null)
            file.SaveAs(path + file.FileName);

        return Content("Sucess");
    }
4

1 に答える 1