1

我是 ASP.NET MVC RAZOR 的新手,我正在尝试将文件上传到我的页面。我发现了很多关于这个主题的问题,但我有一个错误,我不知道为什么。在我看来,这是我的表格:

    @using (Html.BeginForm("Upload", "Upload", FormMethod.Post, new { enctype = "multipart/form-data" }))
{ 
    <input type="file" name="file" />
    <input type="submit" name="Submit" id="Submit" value="Upload" />   

}

这是我的控制器:

namespace Upload.Controllers
{
    public class UploadController : Controller
    {
        //
        // GET: /Upload/

        public ActionResult Upload()
        {
            return View();
        }

        [HttpPost]
        public ActionResult Upload(HttpPostedFileBase file)
        {
            if (file != null && file.ContentLength > 0)
            {
                var fileName = Path.GetFileName(file.FileName);                    
                var path = Path.Combine("C:\\temp\\", fileName);
                file.SaveAs(path);                
            }
            return RedirectToAction("Index"); ;
        }
    }
}

当我运行我的页面时,我收到一个错误,上面写着:“找不到资源:”/上传“。我的错误在哪里?对不起,我知道我是 ASP.NET 的初学者,但我阅读了很多教程,只是想要这个工作。非常感谢。

4

1 回答 1

1

您的控制器名为Upload,但您的操作也是。您必须使用/Upload/Upload/作为 URL,或将Upload操作更改为,Index因为后者是默认操作。

于 2013-10-31T14:49:17.023 回答