分享web开发知识

注册/登录|最近发布|今日推荐

主页 IT知识网页技术软件开发前端开发代码编程运营维护技术分享教程案例
当前位置:首页 > 软件开发

Asp.Net MVC上传图片

发布时间:2023-09-06 02:35责任编辑:苏小强关键词:MVC上传图片

mvc上传图片

 [HttpPost] ???????public JsonResult Upload() ???????{ ???????????if (Request.Files.Count > 0) ???????????{ ???????????????if (Request.Files.Count == 1) ???????????????{ ???????????????????HttpPostedFileBase file = Request.Files[0]; ???????????????????if (file.ContentLength > 0) ???????????????????{ ???????????????????????string title = string.Empty; ???????????????????????title = DateTime.Now.ToString("yyyyMMddHHmmss") + "_" + Path.GetFileName(file.FileName); ???????????????????????string path = "../UploadFile/" + title; ???????????????????????path = System.Web.HttpContext.Current.Server.MapPath(path); ???????????????????????file.SaveAs(path); ???????????????????????return Json(new { status = true, url = path }); ???????????????????} ???????????????} ???????????????else ????????????????{ ???????????????????string[] urllist = new string[Request.Files.Count]; ???????????????????for (int i = 0; i < Request.Files.Count; i++) ???????????????????{ ????????????????????HttpPostedFileBase file = Request.Files[i]; ????????????????????if (file.ContentLength > 0) ????????????????????{ ???????????????????????string title = string.Empty; ???????????????????????title = DateTime.Now.ToString("yyyyMMddHHmmss") + "_" + Path.GetFileName(file.FileName); ???????????????????????string path = "../UploadFile/" + title; ???????????????????????path = System.Web.HttpContext.Current.Server.MapPath(path); ???????????????????????file.SaveAs(path); ???????????????????????urllist[i] = path; ????????????????????} ???????????????????} ???????????????????return Json(new { status = true, url = urllist }); ???????????????} ?????????????????????????} ???????????else ???????????{ ???????????????return Json(new { status = false, url = "",msg="没有文件" }); ???????????} ?????????????????????????????????????return Json(new { status = false, url = "",msg=""}); ???????}

详情请看:https://www.cnblogs.com/jingch/p/5036686.html

webapi上传图片请看:https://www.cnblogs.com/webapi/p/10542077.html

Asp.Net MVC上传图片

原文地址:https://www.cnblogs.com/webapi/p/10542092.html

知识推荐

我的编程学习网——分享web前端后端开发技术知识。 垃圾信息处理邮箱 tousu563@163.com 网站地图
icp备案号 闽ICP备2023006418号-8 不良信息举报平台 互联网安全管理备案 Copyright 2023 www.wodecom.cn All Rights Reserved