我正在将C#和ASP.NET MVC4用于Web应用程序(移动模板)。
现在我在视图中有以下代码:
@using (Html.BeginForm("Index", "Home", FormMethod.Post, new { enctype = "multipart/form-data" }))
{
<label for="file">Upload:</label>
<input type="file" name="file" id="file"/>
<input type="submit" value="Upload" />
}
这在我的控制器中:
[HttpPost]
public ActionResult Index(HttpPostedFileBase file)
{
string path = System.IO.Path.Combine(Server.MapPath("~/Content"), System.IO.Path.GetFileName(file.FileName));
file.SaveAs(path);
ViewBag.Message = "File uploaded successfully";
return View();
}
当我运行应用程序并尝试上传文件时,我明白了 “你调用的对象是空的。” Visual Studio中的消息。 但我知道上面的代码在ASP.NET MVC3中工作得很好,因为我之前已经使用过它。
任何人都可以帮我吗?
答案 0 :(得分:3)
将此属性添加到表单中:data-ajax="false"
@using(Html.BeginForm("Index", "Home", FormMethod.Post, new { enctype="multipart/form-data", data_ajax="false"})){
<label for="file">Upload:</label>
<input type="file" name="file" id="file"/>
<input type="submit" value="Upload" />
}
答案 1 :(得分:1)
您不必使用HttpPostedFileBase
,因为事实上您不必在[HttpPost]操作中接收任何参数。只要您的表单设置为enctype = "multipart/form-data"
(您已经这样做),就可以从请求中获取您的文件:
var file = Request.Files[0];