FCKeditor_2.6.3  控件如何设置上传图片的功能阿?

解决方案 »

  1.   

      <add key="FCKeditor:BasePath" value="/M50Ideas/fckeditor/" />
        <add key="FCKeditor:UserFilesPath" value="/M50Ideas/UploadFiles/" />
    是不是你要的啊?
      

  2.   

    http://www.cnblogs.com/ThinkF/articles/1319450.htmlhttp://www.cnblogs.com/ThinkF/articles/1319450.html
      

  3.   

    页面调用的时候设置 BasePath=文件夹路径 比如:"~/Resource/fckeditor/"。
    找到fckeditor\editor\filemanager\connectors\aspx\config.ascx文件
    文件里有2个方法
    CheckAuthentication是设置上传权限的,有权限的return trueSetConfig方法里面,
    UserFilesPath是页面可以访问到的路径,比如../file/a.gif这种。
    UserFilesAbsolutePath:保存上传文件的绝对路径
      

  4.   

    UserFilesPath是页面可以访问到的路径,比如../file/a.gif这种。
    改成:
    UserFilesPath是页面可以访问到的路径,比如../file/这种。