专业网站建设品牌,十四年专业建站经验,服务6000+客户--广州京杭网络
免费热线:400-963-0016      微信咨询  |  联系我们

MVC上传文件时HttpPostedFileBase file为null的问题

当前位置:网站建设 > 技术支持
资料来源:网络整理       时间:2023/2/14 0:12:10       共计:3632 浏览

MVC使用Ajax.BeginForm上传图片时HttpPostedFileBase file为null,Request.Files获取不到文件,问题分析是页面中存在jquery.unobtrusive-ajax.js文件,注释后 能够获取到。改为Html.BeginForm实现如下:

1 2 3 4 5 6 @using (Html.BeginForm("UploadPhoto", "EditUserInfo", FormMethod.Post, new { enctype = "multipart/form-data" })) { 选择图片: <input type="file" name="uploadFile" /> <input type="submit" /> }

Controller:


1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 [HttpPost] public ActionResult UploadPhoto(HttpPostedFileBase uploadFile) {     if (uploadFile != null && uploadFile.ContentLength > 0)     {         string fileName = WebSecurity.CurrentUserId + Path.GetExtension(uploadFile.FileName)         string direction = Server.MapPath("~/UpLoad/Companys/logo/");         string destinationPath = Path.Combine(direction, fileName);         if (!Directory.Exists(direction))         {             Directory.CreateDirectory(direction);         }         uploadFile.SaveAs(destinationPath);     }     return View(); }


版权说明:
本网站凡注明“广州京杭 原创”的皆为本站原创文章,如需转载请注明出处!
本网转载皆注明出处,遵循行业规范,如发现作品内容版权或其它问题的,请与我们联系处理!
欢迎扫描右侧微信二维码与我们联系。
·上一条:js控制只能输入数字和小数点 | ·下一条:利用Asp.net MVC处理文件的上传下载

Copyright © 广州京杭网络科技有限公司 2005-2025 版权所有    粤ICP备16019765号 

广州京杭网络科技有限公司 版权所有