先将下载的KindEditor放到项目中

View页面

<!DOCTYPE html>
<html>
<head>
    <meta name="viewport" content="width=device-width" />
    <title>Index</title>
    @Scripts.Render("~/bundles/kindeditor")    //MVC4 方法,加载 kindeditor/kindeditor.js
    <script type="text/javascript">
        var editor;
        KindEditor.ready(function (K) {
            editor = K.create('textarea[name="Information"]', {
                allowFileManager: true,                                            //是否可以浏览上传文件
                allowUpload: true,                                                     //是否可以上传
                fileManagerJson: '/KindEditor/ProcessRequest',      //浏览文件方法
                uploadJson: '/KindEditor/UploadImage'                    //上传文件方法  //注意这两个路径
            });
        });
    </script>
</head>
<body>
    @using (Html.BeginForm())
    {
        @Html.TextArea("Information", new { style = "width:800px;height:400px" })
        <input type="submit" value="Submit" />
        <hr />
        @Html.Raw(ViewData["kindeditor"])
    }

<%--<% Html.BeginForm(); %>这是MVC3的写法 上面是MVC4的
        <textarea name="Information" style="width:800px;height:400px"></textarea>
        <input type="submit" value="Submit" />
        <hr />
        <%: ViewData["kindeditor"] %>
    <% Html.EndForm(); %>--%>
</body>
</html>

Controller:
[ValidateInput(false)]        //不加提交会报错
public ActionResult Index(string Information)
{
    ViewData["kindeditor"] = Information;
    return View();
}

上传方法:
[HttpPost]
public ActionResult UploadImage()
{
    string savePath = "/UploadImages/";
    string saveUrl = "/UploadImages/";
    string fileTypes = "gif,jpg,jpeg,png,bmp";
    int maxSize = 1000000;

Hashtable hash = new Hashtable();

HttpPostedFileBase file = Request.Files["imgFile"];
    if (file == null)
    {
        hash = new Hashtable();
        hash["error"] = 1;
        hash["message"] = "请选择文件";
        return Json(hash, "text/html;charset=UTF-8"); 
    }

string dirPath = Server.MapPath(savePath);
    if (!Directory.Exists(dirPath))
    {
        hash = new Hashtable();
        hash["error"] = 1;
        hash["message"] = "上传目录不存在";
        return Json(hash, "text/html;charset=UTF-8"); 
    }

string fileName = file.FileName;
    string fileExt = Path.GetExtension(fileName).ToLower();

ArrayList fileTypeList = ArrayList.Adapter(fileTypes.Split(','));

if (file.InputStream == null || file.InputStream.Length > maxSize)
    {
        hash = new Hashtable();
        hash["error"] = 1;
        hash["message"] = "上传文件大小超过限制";
        return Json(hash, "text/html;charset=UTF-8"); 
    }

if (string.IsNullOrEmpty(fileExt) || Array.IndexOf(fileTypes.Split(','), fileExt.Substring(1).ToLower()) == -1)
    {
        hash = new Hashtable();
        hash["error"] = 1;
        hash["message"] = "上传文件扩展名是不允许的扩展名";
        return Json(hash, "text/html;charset=UTF-8"); 
    }

string newFileName = DateTime.Now.ToString("yyyyMMddHHmmss_ffff", DateTimeFormatInfo.InvariantInfo) + fileExt;
    string filePath = dirPath + newFileName;
    file.SaveAs(filePath);
    string fileUrl = saveUrl + newFileName;

hash = new Hashtable();
    hash["error"] = 0;
    hash["url"] = fileUrl;

return Json(hash, "text/html;charset=UTF-8");
}

浏览方法:
public ActionResult ProcessRequest()
{
    //String aspxUrl = context.Request.Path.Substring(0, context.Request.Path.LastIndexOf("/") + 1);

//根目录路径,相对路径
    String rootPath = "/UploadImages/";
    //根目录URL,可以指定绝对路径,
    String rootUrl = "/UploadImages/";
    //图片扩展名
    String fileTypes = "gif,jpg,jpeg,png,bmp";

String currentPath = "";
    String currentUrl = "";
    String currentDirPath = "";
    String moveupDirPath = "";

//根据path参数,设置各路径和URL
    String path = Request.QueryString["path"];
    path = String.IsNullOrEmpty(path) ? "" : path;
    if (path == "")
    {
        currentPath = Server.MapPath(rootPath);
        currentUrl = rootUrl;
        currentDirPath = "";
        moveupDirPath = "";
    }
    else
    {
        currentPath = Server.MapPath(rootPath) + path;
        currentUrl = rootUrl + path;
        currentDirPath = path;
        moveupDirPath = Regex.Replace(currentDirPath, @"(.*?)[^\/]+\/$", "$1");
    }

//排序形式,name or size or type
    String order = Request.QueryString["order"];
    order = String.IsNullOrEmpty(order) ? "" : order.ToLower();

//不允许使用..移动到上一级目录
    if (Regex.IsMatch(path, @"\.\."))
    {
        Response.Write("Access is not allowed.");
        Response.End();
    }
    //最后一个字符不是/
    if (path != "" && !path.EndsWith("/"))
    {
        Response.Write("Parameter is not valid.");
        Response.End();
    }
    //目录不存在或不是目录
    if (!Directory.Exists(currentPath))
    {
        Response.Write("Directory does not exist.");
        Response.End();
    }

//遍历目录取得文件信息
    string[] dirList = Directory.GetDirectories(currentPath);
    string[] fileList = Directory.GetFiles(currentPath);

switch (order)
    {
        case "size":
            Array.Sort(dirList, new NameSorter());
            Array.Sort(fileList, new SizeSorter());
            break;
        case "type":
            Array.Sort(dirList, new NameSorter());
            Array.Sort(fileList, new TypeSorter());
            break;
        case "name":
        default:
            Array.Sort(dirList, new NameSorter());
            Array.Sort(fileList, new NameSorter());
            break;
    }

Hashtable result = new Hashtable();
    result["moveup_dir_path"] = moveupDirPath;
    result["current_dir_path"] = currentDirPath;
    result["current_url"] = currentUrl;
    result["total_count"] = dirList.Length + fileList.Length;
    List<Hashtable> dirFileList = new List<Hashtable>();
    result["file_list"] = dirFileList;
    for (int i = 0; i < dirList.Length; i++)
    {
        DirectoryInfo dir = new DirectoryInfo(dirList[i]);
        Hashtable hash = new Hashtable();
        hash["is_dir"] = true;
        hash["has_file"] = (dir.GetFileSystemInfos().Length > 0);
        hash["filesize"] = 0;
        hash["is_photo"] = false;
        hash["filetype"] = "";
        hash["filename"] = dir.Name;
        hash["datetime"] = dir.LastWriteTime.ToString("yyyy-MM-dd HH:mm:ss");
        dirFileList.Add(hash);
    }
    for (int i = 0; i < fileList.Length; i++)
    {
        FileInfo file = new FileInfo(fileList[i]);
        Hashtable hash = new Hashtable();
        hash["is_dir"] = false;
        hash["has_file"] = false;
        hash["filesize"] = file.Length;
        hash["is_photo"] = (Array.IndexOf(fileTypes.Split(','), file.Extension.Substring(1).ToLower()) >= 0);
        hash["filetype"] = file.Extension.Substring(1);
        hash["filename"] = file.Name;
        hash["datetime"] = file.LastWriteTime.ToString("yyyy-MM-dd HH:mm:ss");
        dirFileList.Add(hash);
    }
    //Response.AddHeader("Content-Type", "application/json; charset=UTF-8");
    //context.Response.Write(JsonMapper.ToJson(result));
    //context.Response.End();
    return Json(result, "text/html;charset=UTF-8", JsonRequestBehavior.AllowGet);
}

public class NameSorter : IComparer
{
    public int Compare(object x, object y)
    {
        if (x == null && y == null)
        {
            return 0;
        }
        if (x == null)
        {
            return -1;
        }
        if (y == null)
        {
            return 1;
        }
        FileInfo xInfo = new FileInfo(x.ToString());
        FileInfo yInfo = new FileInfo(y.ToString());

return xInfo.FullName.CompareTo(yInfo.FullName);
    }
}

public class SizeSorter : IComparer
{
    public int Compare(object x, object y)
    {
        if (x == null && y == null)
        {
            return 0;
        }
        if (x == null)
        {
            return -1;
        }
        if (y == null)
        {
            return 1;
        }
        FileInfo xInfo = new FileInfo(x.ToString());
        FileInfo yInfo = new FileInfo(y.ToString());

return xInfo.Length.CompareTo(yInfo.Length);
    }
}

public class TypeSorter : IComparer
{
    public int Compare(object x, object y)
    {
        if (x == null && y == null)
        {
            return 0;
        }
        if (x == null)
        {
            return -1;
        }
        if (y == null)
        {
            return 1;
        }
        FileInfo xInfo = new FileInfo(x.ToString());
        FileInfo yInfo = new FileInfo(y.ToString());

return xInfo.Extension.CompareTo(yInfo.Extension);
    }
}

P.S 最近发现 Json(hash); 有时可能有问题,都改用Json(hash, "text/html;charset=UTF-8");

文章来源:http://blog.163.com/very_apple/blog/static/277592362012111155310526/

把单图上传提取出来  有待整理

MVC KindEdit的更多相关文章

  1. Asp.Net Mvc 使用WebUploader 多图片上传

    来博客园有一个月了,哈哈.在这里学到了很多东西.今天也来试着分享一下学到的东西.希望能和大家做朋友共同进步. 最近由于项目需要上传多张图片,对于我这只菜鸟来说,以前上传图片都是直接拖得控件啊,而且还是 ...

  2. .Net Core MVC 网站开发(Ninesky) 2.4、添加栏目与异步方法

    在2.3中完成依赖注入后,这次主要实现栏目的添加功能.按照前面思路栏目有三种类型,常规栏目即可以添加子栏目也可以选择是否添加内容,内容又可以分文章或其他类型,所以还要添加一个模块功能.这次主要实现栏目 ...

  3. ASP.NET MVC with Entity Framework and CSS一书翻译系列文章之第二章:利用模型类创建视图、控制器和数据库

    在这一章中,我们将直接进入项目,并且为产品和分类添加一些基本的模型类.我们将在Entity Framework的代码优先模式下,利用这些模型类创建一个数据库.我们还将学习如何在代码中创建数据库上下文类 ...

  4. ASP.NET Core MVC/WebAPi 模型绑定探索

    前言 相信一直关注我的园友都知道,我写的博文都没有特别枯燥理论性的东西,主要是当每开启一门新的技术之旅时,刚开始就直接去看底层实现原理,第一会感觉索然无味,第二也不明白到底为何要这样做,所以只有当你用 ...

  5. ASP.NET Core 中文文档 第四章 MVC(3.8)视图中的依赖注入

    原文:Dependency injection into views 作者:Steve Smith 翻译:姚阿勇(Dr.Yao) 校对:孟帅洋(书缘) ASP.NET Core 支持在视图中使用 依赖 ...

  6. 开源:Taurus.MVC 框架

    为什么要创造Taurus.MVC: 记得被上一家公司忽悠去负责公司电商平台的时候,情况是这样的: 项目原版是外包给第三方的,使用:WebForm+NHibernate,代码不堪入目,Bug无限,经常点 ...

  7. Taurus.MVC 2.2 开源发布:WebAPI 功能增强(请求跨域及Json转换)

    背景: 1:有用户反馈了关于跨域请求的问题. 2:有用户反馈了参数获取的问题. 3:JsonHelper的增强. 在综合上面的条件下,有了2.2版本的更新,也因此写了此文. 开源地址: https:/ ...

  8. Taurus.MVC 2.0 开源发布:WebAPI开发教程

    背景: 有用户反映,Tausus.MVC 能写WebAPI么? 能! 教程呢? 嗯,木有! 好吧,刚好2.0出来,就带上WEBAPI教程了! 开源地址: https://github.com/cyq1 ...

  9. 使用Visual Studio 2015 开发ASP.NET MVC 5 项目部署到Mono/Jexus

    最新的Mono 4.4已经支持运行asp.net mvc5项目,有的同学听了这句话就兴高采烈的拿起Visual Studio 2015创建了一个mvc 5的项目,然后部署到Mono上,浏览下发现一堆错 ...

随机推荐

  1. sleep和wait的区别?

    sleep指线程被调用时,占着CPU不工作,形象地说明为"占着CPU睡觉",此时,系统的CPU部分资源被占用,其他线程无法进入,会增加时间限制.wait指线程处于进入等待状态,形象 ...

  2. [原创]cocos2d-x研习录-第三阶 特性之物理引擎

    游戏物理引擎是指在游戏中涉及物理现象的逻辑处理,它用于模拟现实世界的各种物理规律(如赛车碰撞.子弹飞行.物体掉落等),让玩家能够在游戏中有真实的体验. Cocos2D-x中支持Box2D和Chipmu ...

  3. u-boot-2010.09移植(A)

    第一阶段 1.开发环境 系统:centOS6.5           linux版本:2.6.32         交叉编译器:buildroot-2012.08 以上工具已经准备好,具体安装步骤不再 ...

  4. 【转】IE8浏览器无法保存Cookie的解决方法

    转自:http://blog.csdn.net/sjsm2007/article/details/17958145 使用IE8浏览器经常出现了无法保存Cookie的故障.每次打开网站需要重新登录,登录 ...

  5. kali 初始化

    关于kali使用前的一些配置,网上有很多版本,但是几乎都很雷同,或者是不全,或者是根本就没有测试过,或者是有的方法是错的(换句话说是版本变化的差异),因此让很多人接触kali时百度无数,效果一般,浪费 ...

  6. kubernetes多节点部署解析

    注:以下操作均基于centos7系统. 安装ansible ansilbe可以通过yum或者pip安装,由于kubernetes-ansible用到了密码,故而还需要安装sshpass: pip in ...

  7. VR外包团队:长年承接VR虚拟现实外包(应用、游戏、视频、漫游等)

    北京动点飞扬软件,从事外包业务五年,长年承接全景VR视频,全景普通视频外包. 以下是全景VR视频案例(可操作,人不动景物不动,人移动,景物跟随) 欢迎联系我们QQ:372900288 TEL:1391 ...

  8. MyBatis入门学习教程-实现关联表查询

    一.一对一关联 1.1.提出需求 根据班级id查询班级信息(带老师的信息) 1.2.创建表和数据 创建一张教师表和班级表,这里我们假设一个老师只负责教一个班,那么老师和班级之间的关系就是一种一对一的关 ...

  9. 解决ie6下不支持fix属性,模拟固定定位

    <!DOCTYPE HTML> <html> <head> <meta http-equiv="Content-Type" content ...

  10. Mesos

    1. 软件定义数据中心 Mesos的二级调度机制: maseos协调每个节点的slave,获取每个节点的机器资源.获取资源后,在相应节点运行framework,在容器中执行任务.从而使得多种类型的服务 ...