Ueditor編輯器確實是很是好用,可是官方的使用文檔已經很是舊了,沒有及時更新,爲了使用Ueditor編輯器,查了幾天資料終於配置成功!真不容易!編輯器
如下配置是把上傳的路徑放到根目錄下的Upload 文件夾內,默認的路徑放得太深刻了。spa
後續我會加上生成縮略圖和添加水印。blog
UEditor 1.3.6 .NET版本圖片上傳配置:
1.把net文件夾下的image.ashx的頂部<%@ Assembly Src="Uploader.cs" %> 和<%@ Assembly Src="Config.cs" %> 去掉圖片
2.把net文件夾下的 uploader.cs 上傳文件處理方法 public Hashtable upFile(HttpContext cxt, string pathbase, string[] filetype, int size) 的 pathbase = pathbase + "/"; 改成:pathbase = pathbase + DateTime.Now.ToString("yyyy-MM-dd") + "/";文檔
3.在net文件夾下的 uploader.cs 上傳文件處理方法 public Hashtable upFile(HttpContext cxt, string pathbase, string[] filetype, int size) 的裏面加上 uploadpath =uploadpath.Replace("ueditor\\net","");get
4. 在ueditor.config.js文件中,圖片上傳配置區把imagePath: URL + "net/" 改成: imagePath: URL.replace("ueditor/","")string
文章來源:http://www.cnblogs.com/meishita/ 到這裏圖片上傳就修改爲功了!it
下面是圖片管理配置:
1.ueditor.config.js文件中,圖片在線管理配置區把imageManagerPath: URL + "net/"改成: imageManagerPath: URL.replace("ueditor/", "")圖片上傳
2.imageManager.ashx 中,把 DirectoryInfo info = new DirectoryInfo(context.Server.MapPath(path));改成:DirectoryInfo info = new DirectoryInfo(context.Server.MapPath(path).Replace("ueditor\\net\\", ""));table