mvc4 使用input:file上传文件

2020-12-13 02:04

阅读:594

标签:mvc4 上传

@using (Html.BeginForm("AddNews", "NewsMgr", FormMethod.Post, new { enctype = "multipart/form-data" }))

前台页面上使用form提交,但是HtmlAttribute必须有这个属性

enctype = "multipart/form-data"

否则上传时提交到后台的Request.Files一直为空,count是0.


后台页面收到请求后便可以上传了

if (Request.Files["attachFile"] != null)
 {
         var file = Request.Files["attachFile"];
         if (file.ContentLength > 0)
             file.SaveAs(temppath + "/" + filename);
}



mvc4 使用input:file上传文件,搜素材,soscw.com

mvc4 使用input:file上传文件

标签:mvc4 上传

原文地址:http://smartwang.blog.51cto.com/3270660/1408197


评论


亲,登录后才可以留言!