先将下载的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. HDU 5966 Guessing the Dice Roll

    题意有 N≤10 个人,每个猜一个长度为L≤10的由1−6构成的序列,保证序列两两不同.不断地掷骰子,直到后缀与某人的序列匹配,则对应的人获胜.求每个人获胜的概率. 思路:建立trie图,跑高斯消元. ...

  2. Python之路,day11-Python基础

    回顾:进程一个程序需要运行所需的资源的集合每个进程数据是独立的每个进程里至少有一个线程进程里可以有多个线程线程数据是共享的一个进程的多个线 6程可以充分利用多核cpumultiprocessing p ...

  3. 使用ImageMagick的convert命令,实现批量rgb转cmyk

    因为业务上的需求,使用脚本批量生成的二维码不能直接去打印店排版印刷,必须转换为cmyk的印刷格式. 首先去http://www.imagemagick.org/下载ImageMagick并安装,这个工 ...

  4. ZIP4J---ZIP文件压缩与解压缩学习

    package com.wbh.common.utils; import java.io.File; import java.io.FileInputStream; import java.io.IO ...

  5. css布局课件

    1.什么是CSS盒模型 我们的网页就是通过一个一个盒子组成的. 2.一个盒子拥有的属性:宽和高(width和height).内边距(padding).边框(border).外边距(margin) wi ...

  6. ajax请求获取的数据无法赋值给全局变量问题总结

    一.总结: 1.问题描述: 今天做项目遇到在用表单显示详细信息的过程中ajax请求获取的数据无法赋值给全局变量的情况,从列表页面进入详情页,在详情页面被渲染了之后就会调用js文件里的接口向服务器请求数 ...

  7. Python多线程、进程入门1

    进程是资源的一个集合, 1.一个应用程序,可以有多进程和多线程 2.默认一个程序是单进程单线程 IO操作使用多线程提高并发 计算操作使用多进程提高并发 进程与线程区别 1.线程共享内存空间,进程的内存 ...

  8. GPU硬件加速相关

    从android3.0开始,2D渲染开始支持硬件加速,即在view的Canvas上的绘图操作可以用GPU来加速. 硬件加速会使app消耗更多的内存. 如果配置文件中,Target API level  ...

  9. C++的隐式类型转换与转换操作符

    C++标准允许隐式类型转换,即对特定的类,在特定条件下,某些参数或变量将隐形转换成类对象(创建临时对象).如果这种转换代价很大(调用类的构造函数),隐式转换将影响性能.隐式转换的发生条件:函数调用中, ...

  10. MVC4中 访问webservice 出现无法找到资源的错误

    出现这个情况,是mvc将webservice.asmx解析成了控制器,下面先将这个控制器忽略 继续访问出现这样的错误: 下面修改配置文件 访问成功