资源简介
FCKeditor文本编辑器 简单强大
FCKeditor.Net编辑器在.net环境的配置方法:
先下载FCKeditor_2.6.5.zip和FCKeditor.Net_2.6.3.zip两个文件
此包为FCKeditor_2.6.5.zip,本站FCKeditor.Net_2.6.3.zip的下载地址为/download-89.html
官网下载地址:http://www.fckeditor.net/
第一步:解压缩FCKeditor_2.6.3.zip文件,并将解压缩得到的fckeditor文件夹复制到你想使用这个编辑器的网站的根目录下面。
第二步:把下载的FCKeditor.Net.zip随便解压缩到你硬盘的一个空目录,里面是FCKeditor.Net的源代码,可以对它进行再度开发,我这里讲直接应用,我们要使用到是其目录下的\bin\Debug目录中的FredCK.FCKeditorV2.dll文件。在你的网站里面把这个FredCK.FCKeditorV2.dll添加到bin目录下。
第三步:进入FCKeditor文件夹,编辑 fckconfig.js 文件,如下:
1、指定编辑器应用的编程环境,修改
var _FileBrowserLanguage = 'asp' ; // asp | aspx | cfm | lasso | perl | php | py
var _QuickUploadLanguage = 'asp' ; // asp | aspx | cfm | lasso | php
改为
var _FileBrowserLanguage = 'aspx' ; // asp | aspx | cfm | lasso | perl | php | py
var _QuickUploadLanguage = 'aspx' ; // asp | aspx | cfm | lasso | php
2、配置语言包。有英文、繁体中文等,这里我们使用简体中文。
修改
FCKConfig.DefaultLanguage = 'en' ;
为
FCKConfig.DefaultLanguage = 'zh-cn' ;
3、配置皮肤。有default、office2003、silver风格等,这里我们可以使用默认。
FCKConfig.SkinPath = FCKConfig.BasePath + 'skins/default/' ;
4、在编辑器域内可以使用Tab键。(1为是,0为否)
FCKConfig.TabSpaces = 0 ; 改为FCKConfig.TabSpaces = 1 ;
5、加上几种我们常用的字体的方法,例如:
修改
FCKConfig.FontNames = 'Arial;Comic Sans MS;Courier New;Tahoma;Times New Roman;Verdana' ;
为
FCKConfig.FontNames = '宋体;黑体;隶书;楷体_GB2312;Arial;Comic Sans MS;Courier New;Tahoma;Times New Roman;Verdana'
6、编辑器域内默认的显示字体为12px,想要修改可以通过修改样式表来达到要求,打开/editor/css/fck_editorarea.css,修改font-size属性即可。如font-size: 14px;
7、关于安全性。
如果你的编辑器用在网站前台的话,那就不得不考虑安全了,在前台千万不要使用Default的toolbar,要么自定义一下功能,要么就用系统已经定义好的Basic,也就是基本的toolbar,
修改
FCKConfig.ToolbarSets["Basic"] = [
['Bold','Italic','-','OrderedList','UnorderedList','-','Link','Unlink','-','About']
为
FCKConfig.ToolbarSets["Basic"] = [
['Bold','Italic','-','OrderedList','UnorderedList','-','Unlink','-','Style','FontSize','TextColor','BGColor','-','Smiley','SpecialChar','Replace','Preview']
] ;
第四步:在Web.Config文件里面添加,如下所示
1、配置WebConfig,在<appSettings>节点添加,如下所示:
如果你用的是默认的上传功能,则
<add key="FCKeditor:BasePath" value="~/fckeditor/"/>
<add key="FCKeditor:UserFilesPath" value="/网站名称/UploadFiles/"/>
第五步:在页面里应用FCKeditor编辑器
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default.aspx.cs" Inherits="_Default" validateRequest="false" %>
<%@ Register Assembly="FredCK.FCKeditorV2" Namespace="FredCK.FCKeditorV2" TagPrefix="FCKeditorV2" %>
// 这里要主要两个参数
// 默认为<%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default.aspx.cs" Inherits="_Default" %>
// 我们要添加一个参数 validateRequest=false,否则提交带html代码的内容会报错
// 从客户端(...)中检测到有潜在危险的 Request.Form 值。
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
<title>无标题页</title>
</head>
<body>
<form id="form1" runat="server">
<div>
<FCKeditorV2:FCKeditor ID="FCKeditor1" runat="server">
</FCKeditorV2:FCKeditor>
</div>
</form>
</body>
</html>
如何获取其内容呢?读取FCKeditor1控件的Value属性值即可。
到这里基本OK了,但是我发现在使用图片上传功能的时候,会弹出一个阻止框,显示"this connector is disabled Please check the"editor/filemanager/connectors/aspx/config.aspx",解决这个错误的方法是打开editor/filemanager/connectors/aspx/config.ascx修改CheckAuthentication()方法,返回true
C# code
private bool CheckAuthentication()
{
// WARNING : DO NOT simply return "true". By doing so, you are allowing
// "anyone" to upload and list the files in your server. You must implement
// some kind of session validation here. Even something very simple as...
//
// return ( Session[ "IsAuthorized" ] != null && (bool)Session[ "IsAuthorized" ] == true );
//
// ... where Session[ "IsAuthorized" ] is set to "true" as soon as the
// user logs in your system.
return true;
}
FCKeditor.Net编辑器在.net环境的配置方法:
先下载FCKeditor_2.6.5.zip和FCKeditor.Net_2.6.3.zip两个文件
此包为FCKeditor_2.6.5.zip,本站FCKeditor.Net_2.6.3.zip的下载地址为/download-89.html
官网下载地址:http://www.fckeditor.net/
第一步:解压缩FCKeditor_2.6.3.zip文件,并将解压缩得到的fckeditor文件夹复制到你想使用这个编辑器的网站的根目录下面。
第二步:把下载的FCKeditor.Net.zip随便解压缩到你硬盘的一个空目录,里面是FCKeditor.Net的源代码,可以对它进行再度开发,我这里讲直接应用,我们要使用到是其目录下的\bin\Debug目录中的FredCK.FCKeditorV2.dll文件。在你的网站里面把这个FredCK.FCKeditorV2.dll添加到bin目录下。
第三步:进入FCKeditor文件夹,编辑 fckconfig.js 文件,如下:
1、指定编辑器应用的编程环境,修改
var _FileBrowserLanguage = 'asp' ; // asp | aspx | cfm | lasso | perl | php | py
var _QuickUploadLanguage = 'asp' ; // asp | aspx | cfm | lasso | php
改为
var _FileBrowserLanguage = 'aspx' ; // asp | aspx | cfm | lasso | perl | php | py
var _QuickUploadLanguage = 'aspx' ; // asp | aspx | cfm | lasso | php
2、配置语言包。有英文、繁体中文等,这里我们使用简体中文。
修改
FCKConfig.DefaultLanguage = 'en' ;
为
FCKConfig.DefaultLanguage = 'zh-cn' ;
3、配置皮肤。有default、office2003、silver风格等,这里我们可以使用默认。
FCKConfig.SkinPath = FCKConfig.BasePath + 'skins/default/' ;
4、在编辑器域内可以使用Tab键。(1为是,0为否)
FCKConfig.TabSpaces = 0 ; 改为FCKConfig.TabSpaces = 1 ;
5、加上几种我们常用的字体的方法,例如:
修改
FCKConfig.FontNames = 'Arial;Comic Sans MS;Courier New;Tahoma;Times New Roman;Verdana' ;
为
FCKConfig.FontNames = '宋体;黑体;隶书;楷体_GB2312;Arial;Comic Sans MS;Courier New;Tahoma;Times New Roman;Verdana'
6、编辑器域内默认的显示字体为12px,想要修改可以通过修改样式表来达到要求,打开/editor/css/fck_editorarea.css,修改font-size属性即可。如font-size: 14px;
7、关于安全性。
如果你的编辑器用在网站前台的话,那就不得不考虑安全了,在前台千万不要使用Default的toolbar,要么自定义一下功能,要么就用系统已经定义好的Basic,也就是基本的toolbar,
修改
FCKConfig.ToolbarSets["Basic"] = [
['Bold','Italic','-','OrderedList','UnorderedList','-','Link','Unlink','-','About']
为
FCKConfig.ToolbarSets["Basic"] = [
['Bold','Italic','-','OrderedList','UnorderedList','-','Unlink','-','Style','FontSize','TextColor','BGColor','-','Smiley','SpecialChar','Replace','Preview']
] ;
第四步:在Web.Config文件里面添加,如下所示
1、配置WebConfig,在<appSettings>节点添加,如下所示:
如果你用的是默认的上传功能,则
<add key="FCKeditor:BasePath" value="~/fckeditor/"/>
<add key="FCKeditor:UserFilesPath" value="/网站名称/UploadFiles/"/>
第五步:在页面里应用FCKeditor编辑器
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default.aspx.cs" Inherits="_Default" validateRequest="false" %>
<%@ Register Assembly="FredCK.FCKeditorV2" Namespace="FredCK.FCKeditorV2" TagPrefix="FCKeditorV2" %>
// 这里要主要两个参数
// 默认为<%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default.aspx.cs" Inherits="_Default" %>
// 我们要添加一个参数 validateRequest=false,否则提交带html代码的内容会报错
// 从客户端(...)中检测到有潜在危险的 Request.Form 值。
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
<title>无标题页</title>
</head>
<body>
<form id="form1" runat="server">
<div>
<FCKeditorV2:FCKeditor ID="FCKeditor1" runat="server">
</FCKeditorV2:FCKeditor>
</div>
</form>
</body>
</html>
如何获取其内容呢?读取FCKeditor1控件的Value属性值即可。
到这里基本OK了,但是我发现在使用图片上传功能的时候,会弹出一个阻止框,显示"this connector is disabled Please check the"editor/filemanager/connectors/aspx/config.aspx",解决这个错误的方法是打开editor/filemanager/connectors/aspx/config.ascx修改CheckAuthentication()方法,返回true
C# code
private bool CheckAuthentication()
{
// WARNING : DO NOT simply return "true". By doing so, you are allowing
// "anyone" to upload and list the files in your server. You must implement
// some kind of session validation here. Even something very simple as...
//
// return ( Session[ "IsAuthorized" ] != null && (bool)Session[ "IsAuthorized" ] == true );
//
// ... where Session[ "IsAuthorized" ] is set to "true" as soon as the
// user logs in your system.
return true;
}
代码片段和文件信息
/*
* FCKeditor - The text editor for Internet - http://www.fckeditor.net
* Copyright (C) 2003-2009 Frederico Caldeira Knabben
*
* == BEGIN LICENSE ==
*
* Licensed under the terms of any of the following licenses at your
* choice:
*
* - GNU General Public License Version 2 or later (the “GPL“)
* http://www.gnu.org/licenses/gpl.html
*
* - GNU Lesser General Public License Version 2.1 or later (the “LGPL“)
* http://www.gnu.org/licenses/lgpl.html
*
* - Mozilla Public License Version 1.1 or later (the “MPL“)
* http://www.mozilla.org/MPL/MPL-1.1.html
*
* == END LICENSE ==
*
* This is the integration file for PHP (All versions).
*
* It loads the correct integration file based on the PHP version (avoiding
* strict error messages with
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
目录 0 2009-09-21 18:56 fckeditor\
目录 0 2009-09-21 18:56 fckeditor\editor\
目录 0 2009-09-21 18:56 fckeditor\editor\css\
目录 0 2009-09-21 18:56 fckeditor\editor\css\behaviors\
文件 236 2009-09-21 18:56 fckeditor\editor\css\behaviors\disablehandles.htc
文件 822 2009-09-21 18:56 fckeditor\editor\css\behaviors\showtableborders.htc
文件 2648 2009-01-15 17:18 fckeditor\editor\css\fck_editorarea.css
文件 4145 2009-01-15 17:18 fckeditor\editor\css\fck_internal.css
文件 1696 2009-01-15 17:18 fckeditor\editor\css\fck_showtableborders_gecko.css
目录 0 2009-09-21 18:56 fckeditor\editor\css\images\
文件 288 2009-09-21 18:56 fckeditor\editor\css\images\block_address.png
文件 293 2009-09-21 18:56 fckeditor\editor\css\images\block_blockquote.png
文件 229 2009-09-21 18:56 fckeditor\editor\css\images\block_div.png
文件 218 2009-09-21 18:56 fckeditor\editor\css\images\block_h1.png
文件 220 2009-09-21 18:56 fckeditor\editor\css\images\block_h2.png
文件 219 2009-09-21 18:56 fckeditor\editor\css\images\block_h3.png
文件 229 2009-09-21 18:56 fckeditor\editor\css\images\block_h4.png
文件 236 2009-09-21 18:56 fckeditor\editor\css\images\block_h5.png
文件 216 2009-09-21 18:56 fckeditor\editor\css\images\block_h6.png
文件 205 2009-09-21 18:56 fckeditor\editor\css\images\block_p.png
文件 223 2009-09-21 18:56 fckeditor\editor\css\images\block_pre.png
文件 184 2009-09-21 18:56 fckeditor\editor\css\images\fck_anchor.gif
文件 599 2009-09-21 18:56 fckeditor\editor\css\images\fck_flashlogo.gif
文件 105 2009-09-21 18:56 fckeditor\editor\css\images\fck_hiddenfield.gif
文件 54 2009-09-21 18:56 fckeditor\editor\css\images\fck_pagebreak.gif
文件 1709 2009-09-21 18:56 fckeditor\editor\css\images\fck_plugin.gif
目录 0 2009-09-21 18:56 fckeditor\editor\dialog\
目录 0 2009-09-21 18:56 fckeditor\editor\dialog\common\
文件 1773 2009-01-15 17:18 fckeditor\editor\dialog\common\fck_dialog_common.css
文件 10481 2009-01-15 17:18 fckeditor\editor\dialog\common\fck_dialog_common.js
目录 0 2009-09-21 18:56 fckeditor\editor\dialog\common\images\
............此处省略617个文件信息
- 上一篇:hzk16_all
- 下一篇:学生管理系统-毕业设计
相关资源
- EasyUI中datagrid 分页,增删改查,上下
- 你必须知道的.NET
- 28.你必须知道的.NET.pdf
- 基于.net的RSA私钥加密 公钥解密的源码
- 校园新闻发布系统源码
- 用EF4.0+ado.net4.0做的增删改查
- Lucene.net 盘古分词字典管理
- DotNetHelper_v22_20120617修正.Net4.0编译错误
- .net企业门户网站源码(0520_).rar
- .net web 开发平台- 表单设计器(EXTJS)
- 办公系统源码(MyOffice)OA
- .NET的三层架构.ppt
- quartz.net+topshelf自动任务模板
- OA最新办公系统源码
- h5无插件 RTSP 摄像头在线播放代码
- Quartz.NET Demo 项目源码
- .net 做的文件,视频的上传和管理
- 电子标签读写器UHFReader18 2.1.zip
- Premiere六套特效转场插件FilmImpact.net
- 三层架构登录web
- .NET课程设计
- CRM客户关系管理系统答辩PPT
- 二次开发读取DWG_
- 基于.net技术的校园新闻发布系统全套
- 车辆租赁管理系统.net
- 基于NeoSpeech和Speech SDK 5.1 实现.net 网站
- Acrobat pdf 二次开发.net 源代码
- oxyplot跨平台绘图库官方说明文档
- 我的计算器.NET版,含源码
- DevExpress.net 7.3.5 完美破解DLL
评论
共有 条评论