vs2003中使用ueditor .net 版本,配置上传文件目录

[ 2014-03-21 12:04:31 | 作者: admin ]
字号: | |
ueditor .net 是.net4框架下开发的,要再.net1.1和.net2.0 (2-3.5)下使用

在包含cs文件的时候,编译的属性需要选择 内容,而不是编译

一共就2个cs文件,Uploader.cs 和 config.cs,其他文件都可以不包含


【编辑器上传图片配置】
1、配置图片的上传路径 ueditor1_3_6\net\Config.cs
public static string[] ImageSavePath = new string[] { "upload1", "upload2", "upload3" };
改为
public static string[] ImageSavePath = new string[] { "/updata/ueditor/"+ DateTime.Now.ToString("yyyyMM") };


2、配置已上传图片的显示网址 ueditor1_3_6\ueditor.config.js
,imagePath:URL + "net/" //图片修正地址,引用了fixedImagePath,如有特殊需求,可自行配置 http://***.com/ueditor1_3_6/net/updata/ueditor/201806/***.jpg
改为
,imagePath:"" //显示时去掉前面的网址 /updata/ueditor/201806/***.jpg


【远程图片自动下载配置】
1、配置远程图片的上传路径 ueditor1_3_6/net/getRemoteImage.ashx
string savePath = "upload/"; //保存文件地址
改为
string savePath = "/updatas/ueditorremote/";

2、配置已上传图片的显示网址 ueditor1_3_6\ueditor.config.js
,catcherPath:URL + "net/" //图片修正地址,同imagePath http://***.com/ueditor1_3_6/net/updata/ueditorremote/2018-06-01/***.jpg
改为
,catcherPath:"" //显示时去掉前面的网址 /updata/ueditorremote/2018-06-01/***.jpg
[最后修改由 admin, 于 2018-06-11 16:51:39]
评论Feed 评论Feed: http://blog.xg98.com/feed.asp?q=comment&id=2180

这篇日志没有评论。

此日志不可发表评论。