ASP.Net中配置和使用FCKeditor

来源:互联网 发布:mac剪切快捷键 编辑:程序博客网 时间:2024/04/30 16:36

本文转自:http://blog.csdn.net/xpioneer/archive/2008/07/29/2727962.aspx

 

要下载FCKeditor2.4.2.zip和     FCKeditor.NET版的2个zip包。
说明:
FCKeditor2.4.2.zip是其最新的文件和图片什么的;
FCKeditor.NET.zip是ASP.NET调用的DLL在里面。

2.分别解压后把FCKeditor2.4.2.zip里的fckeditor目录整个复制到网站中。

3.解压FCKeditor.NET.zip包后在FCKeditor.Net_2.2/bin/Debug目录里找到FredCK.FCKeditorV2.dll。其他文件没用,把FredCK.FCKeditorV2.dll复制到我们的网站,建立一个Bin目录。

4.引用FredCK.FCKeditorV2.dll。
第一步:


第二步:


5.导入工具箱。
在“工具箱”下右键

点击“选择项”。弹出如图窗口:


点击浏览,找到dll所在目录。


这时发现工具箱里多出FCKeditor控件。

 


6.拖拽FCKeditor到页面上


7.配置WebConfig
<?xml version="1.0"?>
<!--
      注意: 除了手动编辑此文件以外,您还可以使用
      Web 管理工具来配置应用程序的设置。可以使用 Visual Studio 中的
       “网站”->“Asp.Net 配置”选项。
      设置和注释的完整列表在
      machine.config.comments 中,该文件通常位于
      /Windows/Microsoft.Net/Framework/v2.x/Config 中
-->
<configuration>
    <appSettings>

      <add key="FCKeditor:BasePath" value="~/fckeditor/"/>

      <add key="FCKeditor:UserFilesPath" value="/Files/" />

    </appSettings>

    <connectionStrings/>
<system.web>

说明:BasePath是fckeditor所在路径,fckeditor由于我们直接放网站目录下这样写就可以,如果您的网站多放几层适当调整即可。
              UserFilesPath是所有上传的文件的所在目录。为什么要设置成/Files这样而不是~/Files,因为FCKeditor使用这个值来返回你上传后的文件的相对路径到客户端。否则的话客户访问的时候就会取客户的机器目录而不是http形式的目录。

建议:Files要单独做wwwroot目录下的一个站点比较好,和我们的站点FCKEditor平行。不要把它放FCKEditor里,为什么呢?因为Files是要让客户有写的权限的,如果放FCKEditor下很危险。

8.Files目录要有写的权限。你根据自己网站需求设置那个帐号,本文为方便设置User实际中你可能用ASP.NET帐号更合理。

 

9.修改fckeditor/fckconfig.js文件
在第182行的位置
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

10.FCKeditor给其瘦身。以_打头的的都是范例文件或源文件,不过建议小心。

11.下面以上传图片示例说明如何使用,


点击“浏览服务器”。


弹出窗口很容易报错


如果报错XML request error: Internal Server Error(500),很可能就是目录路径不对和写权限没有。

选择图像

 

最后效果


前台代码:

<%@ Page Language="C#"   validateRequest=false AutoEventWireup="true"    CodeFile="Default.aspx.cs" Inherits="_Default" %>

<%@ Register Assembly="FredCK.FCKeditorV2" Namespace="FredCK.FCKeditorV2" TagPrefix="FCKeditorV2" %>

<!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>FCKeditor文本编辑器</title>
</head>
<body>
      <form id="form1" runat="server">
      <div>
          <fckeditorv2:fckeditor id="FCKeditor1" runat="server" DefaultLanguage="zh-cn" Height="400px" Width="660px"
></fckeditorv2:fckeditor>
   
      </div>
      </form>
</body>
</html>

怎么样获取结果呢?FCKeditor1.Value就是。

 

本文来自CSDN博客,转载请标明出处:http://blog.csdn.net/xpioneer/archive/2008/07/29/2727962.aspx

 

 

 

 

 

从官方网站http://www.fckeditor.net/download下载最新版的Fckeditor。

需要下载Fckeditor 2.X .X,当前的最新版本是2.6.3

还需要下载Fckeditor.Net,这里面包含的有.NET编译文件。

  1. 把FCKEditor2.6解压到你的网站文件夹中

        解压后生成了一个以FCKEditor命名的文件夹。

   2.把DLL添加到你的BIN目录下

      把Fckeditor.Net解压到你网站所在的文件夹。

     在VS中右击你的BIN文件夹,(没有的话,新建一个),添加引用->浏览->找到Fckeditor.Net解压目录,在BIN/debug/2.0中找到dll文件,添加。

     专门写给笨蛋吧,怕你们不会添加

    3.在工具栏中加入DLL文件

       在工具栏里找到常规,右击->选择项,在.NET FRAMEWORk组件里点击浏览,找到刚才添加到BIN里的DLL文件。添加。

    4.配置fckeditor

     找到fckeditor/editor/filemanager/connectors/aspx,把函数CheckAuthentication()中的return false 改为return true

     找到fckeditor/fckconfig.js
     将var _FileBrowserLanguage = 'PHP' ; // asp | aspx | cfm | lasso | perl | php | py
        var _QuickUploadLanguage = 'PHP' ; // asp | aspx | cfm | lasso | perl | php | py

     改为

     var _FileBrowserLanguage = 'aspx' ; // asp | aspx | cfm | lasso | perl | php | py
     var _QuickUploadLanguage = 'aspx' ; // asp | aspx | cfm | lasso | perl | php | py

     5.配置文件的路径
        打开VS的,菜单栏中的"网站","asp.net配置",点“应用程序设置”,“创建应用程序设置”,在名称栏里填写FCKeditor:BasePath,值选项里面填写~/fckeditor/注意:这是fckeditoR文件夹相对于bin文件夹中的dll的路径,填错的话,会找不到文件的。)保存。

     同上再添加一下“名称”FCKeditor:UserFilesPath,值~/Files/(这也是相对于dll的路径),files用于存放上传的文件。然后在你的网站里建一个files文件夹,里面再建一上image文件夹。

     到这就配置完了,试一下吧,新建一个ASPX页面。从常规里面把FCKEDITOR拖动到页面上,(在第3步添加过的哟)。预览一下,试试看吧。

 

 

 

 

 

 

 

 

FCKeditor出现"this connector is disabled Please check the"editor/filemanager/connectors/aspx/config.aspx"错误的解决办法

我最近在整合FCK,我也遇到了这个问题。

解决办法:

打开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;
}

随便看了一下config.ascx里的内容,发现如果想让对每个用户进行不同的配置,FCKeditor支持的更好了。