我是 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 的初学者,但我阅读了很多教程,只是想要这个工作。非常感谢。