我是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的初学者,但我阅读了很多教程,只是想让它工作。 非常感谢。
答案 0 :(得分:1)
您的控制器名为Upload
,但您的行动也是。{您必须使用/Upload/Upload/
作为网址,或将Upload
操作更改为Index
,因为后者是默认操作。