刚刚下了一个 FCKeditor 调了很久他都不能自动把网页上的图片上传到服务器上。有没有办法。
fckconfig.js 要怎么设置

解决方案 »

  1.   

    在调用页面加上
    this.FCKeditor.BasePath=(this.ResolveUrl(this.FCKeditor.BasePath));在web。config加上
    <appSettings>

    <add key="FCKeditor:UserFilesPath" value="~/downloadPicture/" />
    </appSettings>
      

  2.   

    设置你的BasePath到你存放fck的地方
      

  3.   

    <appSettings>    <add key="FCKeditor:BasePath" value="~/FCKeditor/"/>    <add key="FCKeditor:UserFilesPath" value="/projectname/updatefiles" />  </appSettings>
    第一个设置js等文件路径
    第二个设置上传文件路径