asp配置ueditor遇到的一些问题

来源:互联网 发布:全29青峰剃刀数据 编辑:程序博客网 时间:2024/05/16 13:49

官网http://ueditor.baidu.com/website/download.html#ueditor下载asp对应版本

上传到网站根目录新建个文件夹以ueditor命名

在需要插入ueditor编辑器的地方加入以下代码

<textarea name="content" id="container" style="width: 800px;height: 600px"></textarea><script type="text/javascript" charset="gbk" src="/ueditor/ueditor.config.js"></script><script type="text/javascript" charset="gbk" src="/ueditor/ueditor.all.js"></script><script type="text/javascript" charset="gbk" src="/ueditor/lang/zh-cn/zh-cn.js"></script><script type="text/javascript"> var editor = new UE.ui.Editor();editor.render("container");UE.getEditor('container');</script>
接收值方法

Content = Request.Form("Content")
如果接收不到值检查下程序是否是table表格的,如果是table标签一定要把form放到table外面问题解决


如果图片上传500错误

找到/ueditor/asp/Uploader.Class.asp文件

    Private Function CheckOrCreatePath( ByVal path )        Set fs = Server.CreateObject("Scripting.FileSystemObject")        Dim parts        parts = Split( path, "\" )        path = ""        For Each part in parts            path = path + part + "\"            If fs.FolderExists( path ) = False Then                fs.CreateFolder( path )            End If        Next    End Function
修改为

    Private Function CheckOrCreatePath( ByVal path )      Set fs = Server.CreateObject("Scripting.FileSystemObject")      Dim parts      Dim root : root = Server.mappath("/") & "\"      parts = Split( Replace(path, root, ""), "\" )      path = root      For Each part in parts          path = path + part + "\"          If fs.FolderExists( path ) = False Then              fs.CreateFolder( path )          End If      Next  End Function





0 0
原创粉丝点击