博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
jquery.form.js实现异步上传
阅读量:5283 次
发布时间:2019-06-14

本文共 1983 字,大约阅读时间需要 6 分钟。

 前台页面

1 @{ 2     Layout = null; 3 } 4  5  6  7     
8 9 10 upload11 12 13
14 文件名称:
15 上传文件:
16
17
my img18
19 20 21 22 23 24 25 63

加载中...

64 65

 后台代码

using System;using System.Collections.Generic;using System.Drawing;using System.Linq;using System.Web;using System.Web.Mvc;namespace IceMvc.Controllers{    public class UploadController : Controller    {        //        // GET: /Upload/        public ActionResult Index()        {            return View();        }        [HttpPost]        public ActionResult Upload()        {            var filesList = Request.Files;            for (int i = 0; i < filesList.Count; i++)            {                var file = filesList[i];                if (file.ContentLength > 0)                {                    if (file.ContentLength > 5242880)                    {                        return Content("");                    }                    //得到原图的后缀                    string extName = System.IO.Path.GetExtension(file.FileName);                    //生成新的名称                    string newName = Guid.NewGuid() + extName;                    string imgPath = Server.MapPath("/upload/img/") + newName;                    if (file.ContentType.Contains("image/"))                    {                        using (Image img = Image.FromStream(file.InputStream))                        {                            img.Save(imgPath);                        }                        var obj = new { fileName = newName };                        return Json(obj);                    }                    else                    {                        //return Content("");                    }                }            }            return Content("");        }        public ActionResult Afupload()        {            return View();        }    }}

 

转载于:https://www.cnblogs.com/ICE_Inspire/p/5041538.html

你可能感兴趣的文章
HW5.29
查看>>
Linux查看物理CPU个数,核数,逻辑CPU个数;内存信息
查看>>
sqlserver查询效率
查看>>
FoxMail邮件设置
查看>>
percona-toolkit 之 【pt-online-schema-change】说明
查看>>
[模板]大数加法
查看>>
ZeroBrane Lua脚本编辑器代码自动补全
查看>>
linux下播放mp3
查看>>
POJ1611-The Suspects-并查集
查看>>
笔记--cocos2d-x 3.0 环境搭建
查看>>
Unable to create an instance of the Java Virtual Machine
查看>>
jQuery实现鼠标经过时高亮,同时其他同级元素变暗的效果
查看>>
深入理解类成员函数的调用规则(理解成员函数的内存为什么不会反映在sizeof运算符上、类的静态绑定与动态绑定、虚函数表)...
查看>>
div最低高度设置
查看>>
Chrome浏览器正常,IE下界面却乱了
查看>>
关于不断刷新界面jsp+ajax
查看>>
课程总结
查看>>
gcc/g++ 如何支持c11 / c++11标准编译
查看>>
js高阶函数应用—函数防抖和节流
查看>>
牛客 545A 小A与最大子段和 & CF 660F Bear and Bowling 4
查看>>