私@Html.BeginForm
のビューには、ユーザーが画像をアップロードして画像に関する詳細を追加できるようにすることを想定しています。
ビューは次のとおりです。
@Html.BeginForm("SaveImage", "Listing", FormMethod.Post, new { enctype = "multipart/form-data" }))) {
<div id="modalAddImage" class="modal hide fade" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
<h3 id="myModalLabel">Modal header</h3>
</div>
<div class="modal-body">
<p>Image</p>
<input type="file" name="file"></input>
@foreach (Image translation in Model.Listing.Images)
{
@Html.TextBoxFor(m => m.Description)
}
</div>
<div class="modal-footer">
<button class="btn" data-dismiss="modal" aria-hidden="true">Close</button>
<button class="btn btn-primary">Save changes</button>
</div>
</div>
}
私は@Html.BeginForm
これの直前に別のものを持っています。それは何か他のもののためです。
これは私のコントローラーです:
[HttpPost]
public ActionResult SaveImage(HttpPostedFileBase file)
{
if (file!= null && file.ContentLength > 0)
{
var fileName = Path.GetFileName(file.FileName);
var path = Path.Combine(Server.MapPath("~/App_Data/uploads"), fileName);
file.SaveAs(path);
}
return View("Maintain");
}
ブレークポイントをに入れるとSaveImage
、ファイルは常にnullになります。大きい画像と小さい画像の両方をアップロードしようとしました。
誰かが私がひどく間違っているところを見ることができますか?