我正在尝试使用ASP MVC 5从表单上传文件。
但我的public ActionResult Test(int? id, HttpPostedFileBase file)
{
if (file != null && file.ContentLength > 0)
{
//blabla
}
}
总是= 0
using (Html.BeginForm("Test", "MyController",FormMethod.Post, new { id = Model.Id, enctype = "multipart/form-data" }))
{
@Html.AntiForgeryToken()
<input type="file" id="file" name="file" />
<div class="form-group">
<button type="submit">Ajouter</button>
</div>
}
这里我的表单是.cshtml
~ run in same JRE as workspace