它看起来与其他问题类似但是他们遇到的所有问题都是在HTML中输入类型名称=“文件”和控制器中参数名称之间的命名不匹配。我已经多次检查并重新检查了很多东西,但是仍然HttpPostedFileBase的值总是返回null,导致控制器中出现NullReferenceException。 这是代码: - HTML代码: -
@using (Html.BeginForm(new { enctype = "multipart/form-data" }))
{
@Html.ValidationSummary(true)
<fieldset>
<legend>Please Fill in the following details and Upload your Design Pic</legend>
<div class="editor-label">
@Html.LabelFor(model => model.chest)
</div>
<div class="editor-field">
@Html.EditorFor(model => model.chest)
@Html.ValidationMessageFor(model => model.chest)
</div>
<p>
<label for="file">Design File Pic:</label>
<input type="file" name="file" />
</p>
<p>
<input type="submit" value="Order" />
</p>
在控制器中: -
[HttpPost]
[Authorize]
public ActionResult Index(DesignOrder order, HttpPostedFileBase file)
{
string fileurl=null;
if (file.ContentLength > 0) {
fileurl = Path.Combine("../../Images/UserUploads",User.Identity.Name + file.FileName);
file.SaveAs(fileurl);
}
}
如果(file.ContentLength&gt; 0) - NullreferenceException,则出现错误。
答案 0 :(得分:3)
因为Html.BeginForm(object)
用于RouteValues
,而不是元素属性。您需要对属性使用更大的重载。试试这个:
Html.BeginForm("action", "controller", null, FormMethod.Post, new { enctype = "multipart/form-data" })
请参阅此处了解我的意思:http://msdn.microsoft.com/en-us/library/dd470793(v=vs.108).aspx