资源简介
FCKeditor文本编辑器 简单强大
FCKeditor.Net编辑器在.net环境的配置方法:
先下载FCKeditor_2.6.5.zip和FCKeditor.Net_2.6.3.zip两个文件
此包为FCKeditor.Net_2.6.3.zip,本站FCKeditor_2.6.5.zip的下载地址为/download-88.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.Net_2.6.3.zip,本站FCKeditor_2.6.5.zip的下载地址为/download-88.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-2007 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 ==
*/
using System.Reflection;
using System.Runtime.CompilerServices;
using System.Security.Permissions ;
using System.Web.UI ;
[assembly:TagPrefix(“FredCK.FCKeditorV2“ “
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 596 2008-07-26 14:53 _assemblykey.snk
文件 1262 2008-03-19 18:47 _documentation.html
目录 0 2008-07-26 14:53 _samples\
目录 0 2008-07-26 14:53 _samples\aspx\
目录 0 2008-07-26 14:53 _samples\aspx\1.1\
文件 3735 2008-07-26 14:47 _samples\aspx\1.1\sample01.aspx
文件 4767 2008-07-26 14:47 _samples\aspx\1.1\sample02.aspx
文件 3353 2008-07-26 14:53 _samples\aspx\1.1\sample02.aspx.cs
文件 5317 2008-07-26 14:53 _samples\aspx\1.1\sample02.aspx.resx
文件 2810 2008-07-26 14:47 _samples\aspx\1.1\sample03.aspx
文件 2956 2008-07-26 14:53 _samples\aspx\1.1\sample03.aspx.cs
文件 5317 2008-07-26 14:53 _samples\aspx\1.1\sample03.aspx.resx
文件 2853 2008-07-26 14:47 _samples\aspx\1.1\sample04.aspx
文件 3067 2008-07-26 14:53 _samples\aspx\1.1\sample04.aspx.cs
目录 0 2008-07-26 14:53 _samples\aspx\2.0\
文件 3334 2008-02-19 14:23 _samples\aspx\2.0\sample01.aspx
文件 4751 2008-02-19 14:23 _samples\aspx\2.0\sample02.aspx
文件 2371 2008-07-26 14:53 _samples\aspx\2.0\sample02.aspx.cs
文件 2809 2008-02-19 14:23 _samples\aspx\2.0\sample03.aspx
文件 1992 2008-07-26 14:53 _samples\aspx\2.0\sample03.aspx.cs
文件 2852 2008-02-19 14:23 _samples\aspx\2.0\sample04.aspx
文件 2106 2008-07-26 14:53 _samples\aspx\2.0\sample04.aspx.cs
文件 1494 2007-12-22 12:23 _samples\aspx\default.html
文件 8627 2008-07-26 14:45 _whatsnew.html
文件 3451 2008-07-26 14:53 AssemblyInfo.cs
目录 0 2008-07-26 14:53 bin\
目录 0 2008-07-26 14:53 bin\Debug\
目录 0 2008-07-26 14:53 bin\Debug\1.1\
文件 45056 2008-07-26 14:53 bin\Debug\1.1\FredCK.FCKeditorV2.dll
文件 85504 2008-07-26 14:53 bin\Debug\1.1\FredCK.FCKeditorV2.pdb
目录 0 2008-07-26 14:53 bin\Debug\2.0\
............此处省略23个文件信息
- 上一篇:vfp程序设计案例
- 下一篇:jQuery 1.4.1 API 中文参考手册.chm
相关资源
- 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
评论
共有 条评论