我有一个Form
包含几个FileUpload
元素的 Html,我想用 jQuerysubmit
方法提交它,问题是提交的表单时它没有发送Files
我想要上传的那些。我不知道是什么问题,我应该如何解决。以下代码显示了我的代码发生了什么:
@using (Html.BeginForm("Create", "Personel", new { @enctype = "multipart/form-data" }))
{
<input type="file" id="personelPhoto" name="personelPhoto" />
}
if (form["personelPhoto"] != null)
{
// Request's files count is 0
}
任何建议都会有所帮助。