浏览模式: 普通 | 列表
3月, 2014 | 1

asp版本中ueditor的目录权限判断问题

[ 2014-03-29 13:07:47 | 作者: admin ]
ueditor采用遍历目录每个节点来判断目录是否存在,不存在就建立一个,而根目录 f:\ 这样的往往不会赋予i_usr的权限,所以容易报 权限不足

打开config.asp,只设置一个主目录upload,并且建立后赋予读写权限

config.Add "imageSavePath", Array("upload1","upload2","upload3")
改为
config.Add "imageSavePath", Array("upload")


Uploader.Class.asp 修改路径判断,只建立一层目录,这样就会产生 upload/20140329的目录
         Private Function CheckOrCreatePath( ByVal path )
...

阅读全文…

Ueditor怎么加载数据库中的内容

[ 2014-03-21 12:09:56 | 作者: admin ]
<script type="text/javascript" charset="gbk" src="/ueditor1_3_6/ueditor.config.js"></script>
<script type="text/javascript" charset="gbk" src="/ueditor1_3_6/ueditor.all.min.js"> </script>
<script type="text/javascript" charset="gbk" src="/ueditor1_3_6/lang/zh-cn/zh-cn.js"></script>




需要注意表单的html格式必须准确,不然无法获取 request.form("infobody")
错误的格式:<table><form><tr>...</tr></form></table>
正确的格式:<form><tab...

阅读全文…
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[]
...

阅读全文…
1