惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

罗磊的独立博客
Martin Fowler
Martin Fowler
J
Java Code Geeks
The GitHub Blog
The GitHub Blog
C
Check Point Blog
H
Help Net Security
Google DeepMind News
Google DeepMind News
人人都是产品经理
人人都是产品经理
博客园 - 聂微东
P
Proofpoint News Feed
V
Visual Studio Blog
Stack Overflow Blog
Stack Overflow Blog
雷峰网
雷峰网
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
Vercel News
Vercel News
S
SegmentFault 最新的问题
L
LangChain Blog
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
The Cloudflare Blog
Hugging Face - Blog
Hugging Face - Blog
有赞技术团队
有赞技术团队
博客园_首页
小众软件
小众软件
aimingoo的专栏
aimingoo的专栏

博客园 - Ame

将项目改为windows 服务的步骤 js 设为首页,加入收藏夹 - Ame - 博客园 压缩图片 - Ame - 博客园 IE,firefox 里对浏览器事件处理的兼容性处理 - Ame - 博客园 项目中的JS ,alert 出现乱码 Jquery 插件参考 报表实现的参考 RDLC 矩阵使用 - Ame - 博客园 ajaxpro 的使用心得 - Ame - 博客园 [转]ReportViewer 2008的部署 Reporting services 权限 经典正则表达式 [转载] iframe和跨站点cookie被阻止 (转载) js 动态生成HTML,并加载事件遇到的问题 - Ame - 博客园 jquery.cookies 的使用心得[仅做自己记忆所用] 一些药物的副作用 一些食物的用法 Blogs Flog Fat 蜂蜜知识大全 - Ame - 博客园
FCKeditor 的使用心得
Ame · 2010-06-09 · via 博客园 - Ame

1.首先下载

   官方下载首页:http://www.fckeditor.net/download/

     需要下载FCKeditor_2.6.6和FCKeditor.Net_2.6.3

2.将FCKeditor_2.6.6里的文件夹fckeditor 加入到项目中,放在根目录下。

3.添加FCKeditor.Net_2.6.3里的DLL到引用,或在工具箱里添加

4.web.config 里添加

    <add key="FCKeditor:BasePath" value="~/fckeditor/"/>  第2步的文件夹位置

    <add key="FCKeditor:UserFilesPath" value="~/UserFiles/" /> 存放上传文件的位置。根据自己的文件所在位置填写。

5.在文件夹fckeditor下的fckconfig.js 里的

   var _FileBrowserLanguage = 'aspx' ; // asp | aspx | cfm | lasso | perl | php | py      改成你所使用的语言
   var _QuickUploadLanguage = 'aspx' ; // asp | aspx | cfm | lasso | perl | php | py    改成你所使用的语言

6.在fckeditor/editor/filemanager/connectors/aspx 里的两个aspx页面,

      (1) 页面属性加上StylesheetTheme=“”,引号填写你本项目的样式主题名

    (2)在fckdeitor的控件前面加上

     <html>
    <head id="Head1" runat="server"></head>

     在fckdeitor的控件后面加上

     </html>

7.如果上传文件的话,必须userfiles文件夹是可写入的。还有在fckeditor/editor/filemanager/connectors/里的config.ascx的方法 CheckAuthentication()必须返回true;

以上是我在做项目时遇到的一些问题,仅做为记录。