fckeditor在上传标签页面,传过文件后,在浏览服务器那里,看不到之前上传的文件,通过浏览服务器页面上传文件,保存的目录也和上传标签页面上传的不是同一个文件夹。
修改方法如下:
打开fckeditoreditorfilemanagerconnectorsaspx目录下的config.ascx,将SetConfig()方法下面的
TypeConfig[ "File" ].FilesPath= "%UserFilesPath%/file";
改为
TypeConfig[ "File" ].FilesPath= "%UserFilesPath%/";即可。