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

推荐订阅源

Recorded Future
Recorded Future
Microsoft Security Blog
Microsoft Security Blog
Recent Commits to openclaw:main
Recent Commits to openclaw:main
The Register - Security
The Register - Security
The GitHub Blog
The GitHub Blog
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
人人都是产品经理
人人都是产品经理
量子位
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
有赞技术团队
有赞技术团队
Stack Overflow Blog
Stack Overflow Blog
H
Help Net Security
Apple Machine Learning Research
Apple Machine Learning Research
The Cloudflare Blog
B
Blog RSS Feed
小众软件
小众软件
博客园 - 叶小钗
H
Hackread – Cybersecurity News, Data Breaches, AI and More
博客园 - 聂微东
博客园_首页
B
Blog
雷峰网
雷峰网
S
SegmentFault 最新的问题
N
Netflix TechBlog - Medium
D
Docker
博客园 - 司徒正美
博客园 - 【当耐特】
大猫的无限游戏
大猫的无限游戏
博客园 - Franky
MongoDB | Blog
MongoDB | Blog
U
Unit 42
CTFtime.org: upcoming CTF events
CTFtime.org: upcoming CTF events
腾讯CDC
F
Fortinet All Blogs
aimingoo的专栏
aimingoo的专栏
Martin Fowler
Martin Fowler
Jina AI
Jina AI
WordPress大学
WordPress大学
D
DataBreaches.Net
V
V2EX
V
Visual Studio Blog
Know Your Adversary
Know Your Adversary
P
Privacy & Cybersecurity Law Blog
F
Full Disclosure
G
Google Developers Blog
Engineering at Meta
Engineering at Meta
The Hacker News
The Hacker News
Security Archives - TechRepublic
Security Archives - TechRepublic
IT之家
IT之家
P
Privacy International News Feed

博客园 - 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;

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