我无法获取上传文件( HTTPPostedFile) 和一个被挂载到动作的物体 。 我有一个类部件叫做 :
public class Widget
{
public string FirstName { get; set; }
public string LastName { get; set; }
public string FilePath { get; set; }
}
在部件控制器中,我有一个添加方法
public ActionResult Add()
{
return View();
}
以及一种超载方法, 以接受用户后退的功能
[HttpPost]
public ActionResult Add(Widget widget, HttpPostedFile file)
{
// Save posted file using a unique
// Store the path/unique name in Widget.FilePath
// Save new Widget object
return View();
}
在《观察》中,我有以下内容:
@model Project.Models.Widget
@{
using(Html.BeginForm())
{
Html.LabelFor(model => model.FirstName)<br />
Html.TextBoxFor(model => model.FirstName)<br />
Html.LabelFor(model => model.LastName)<br />
Html.TextBoxFor(model => model.LastName)<br />
<input type="file" id="file" /><br />
<input type="submit" value="Save" />
}
}
我想做的是让用户填写表格并选择要上传的文件。 一旦文件被上传, 我要使用一个独有的名称保存文件, 然后将文件路径作为部件存储 。 FilePath 。
每次我尝试时,部件对象都被覆盖, 但上传文件是空的 。
任何帮助都将不胜感激。