asp程序内容详情需要批量上传图片,自带的编辑器不支持批量上传图片,下载了百度的UEDITOR,示例效果非常完美,支持批量上传图片.在整合过程中,图片上传遇到了问题,记录解决过程1.下载最新开发版UEDITOR,1.4.3.3 ASP gbk版本 http://ueditor.baidu.com/build/build_down.php?n=ueditor&v=1_4_3_3-gbk-asp2.解压上传至网站目录ueditor3.修改ueditor/asp 目录下的config.json文件,修改成适应自己网站的路径 "imageUrlPRefix": "/ueditor/asp/", /* 图片访问路径前缀 */ "imagePathFormat": "upload/image/{yyyy}{mm}{dd}/{time}{rand:6}", /* 上传保存路径,可以自定义保存路径和文件名格式 */4.修改ueditor/asp 目录下的 MultiformProcessor.class.asp找到public Function Process()在语句 formBytes = Request.BinaryRead( Request.TotalBytes )后面加上if Lenb(formBytes) <= 0 thenresponse.endend if 5.修改ueditor/asp 目录下的 Uploader.Class.aspPrivate 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") If fs.FolderExists( path ) = False Then fs.CreateFolder( path ) End If End Function