• FCKeditor 2.6.4在ASP.NET中的安装、配置方法【转】 Fred


    FCKeditor 2.6.4在ASP.NET中的安装、配置方法
    FCKeditor是一款功能强大的开源在线文本编辑器(DHTML editor),使你在web上可以使用类似微软Word 的桌面文本编辑器的许多强
    大功能。FCKeditor目前的最新版本是2.6.4,本文以FCKeditor2.6.4介绍在asp.Net中的配置方法。
    FCKEditor官方下载地址:http://www.fckeditor.net/download
    在官方网站下载
    FCKeditor 2.6.3: FCKeditor_2.6.4.zip
    FCKeditor.Net :FCKeditor.Net_2.6.4.zip  
    配置方法如下:
    一、删除不必要的文件
    从官方下载下来的FCKEditor2.6.4,其实有很多文件对于只用ASP.NET的来讲是不需要的,我们可以删除不必要的文件:解压缩
    FCKeditor_2.6.3.zip到vs2008对应的项目fckeditor文件夹中,同时把文件夹内带_的文件夹和文件一并删除:

    1.fckeditor目录下除editor目录、fckconfig.js、fckeditor.js fckstyles.xml fcktemplates.xml 这几个保留,其余的全部
    删除
    2.editor\filemanager\connectors目录中除aspx目录外全部删除
    3.editor\lang目录中除en.js、zh.js 、zh-cn.js外全部删除
    4.删除_samples目录,当然如果你想看示例,就不要删除这个目录了。
    二、下载FCKeditor.Net_2.6.4.zip。解压缩,将bin/Release中的FredCK.FCKeditorV2.dll拷贝到网站或项目的bin目录内。这里
    要注意选择一下asp.Net的版本
    三、fckconfig.js修改:
    FCKConfig.DefaultLanguage = ’zh-cn’ ;  
    var _FileBrowserLanguage = ’aspx’ ;  
    var _QuickUploadLanguage = ’aspx’ ;

    四、web.config相关配置:
    <appSettings>
        <add key="FCKeditor:BasePath" value="~/fckeditor/"/>
        <add key="FCKeditor:UserFilesPath" value="~/upload/"/>
    </appSettings>
    五、页面调用
    <%@ Register assembly="FredCK.FCKeditorV2" namespace="FredCK.FCKeditorV2" tagprefix="FCKeditorV2" %>
    <FCKeditorV2:FCKeditor ID="FCKeditor" runat="server" ToolbarSet="Basic"></FCKeditorV2:FCKeditor>
    取值之只要 FCKeditor.Value就可以轻松实现
    注意:Textbox是显示不出来带格式的字符的。
  • 相关阅读:
    Service Location Protocol SLP
    [http 1.1] M-POST
    安装 wbemcli
    [http 1.1] M-POST w3
    [CODEVS 1288]埃及分数
    [NOIp 2013]货车运输
    [测试题]gentree
    [USACO 07NOV]Cow Relays
    [USACO 13DEC]Vacation Planning(gold)
    [CODEVS 2495]水叮当的舞步
  • 原文地址:https://www.cnblogs.com/Fred_Xu/p/1499460.html
Copyright © 2020-2023  润新知