FCKeditor 2.6.5 ASP环境安装配置使用说明

FCKeditor 2.6.5 ASP环境安装配置使用说明

安装 FCKeditor 2.6.5

  1. 访问 FCKeditor 的官方网站,下载最新的 FCKeditor 2.6.5 的安装包。

  2. 解压缩下载的安装包文件,将其中的文件夹 fckeditor 复制到你的网站的根目录下。

配置 FCKeditor 2.6.5

  1. 配置 FCKeditor 在网页中的使用。

在需要使用 FCKeditor 的页面中引入如下代码块:

```html

```

  1. 配置 FCKeditor 的服务器端。

在需要使用 FCKeditor 的页面中编写一个名为 editor_config.asp 的文件,代码片段如下:

```asp
%@LANGUAGE="VBSCRIPT"%
<%
' -- editor_config.asp --
' FCKeditor Sample Configuration File
'
' For more information check the documentation folder or
' http://wiki.fckeditor.net/Developer%27s_Guide/Configuration/Configuration_File
' ----------------------------------------------------------------------

'==[ Server Parameters ]===============================================
'== About: By default most of the parameters are set to their default value.
'== only a few needs to be changed. Please read the documentation
'== for all of them.
'=======================================================================

' The path to the application working directory (real or virtual).
FCKConfig.BasePath = "/fckeditor/" ' 相对于当前页面的路径,也可以写绝对路径。

' The following value enables the ImageBrowser plugin
' (It requires Java on the server). The default value
' is "false".
FCKConfig.ImageBrowser = true

' ==[ Language Settings ]===============================================
' == About: Here you can change the language settings.
'=======================================================================

' Set the editor interface language. Supported languages are:
' ar - Arabic, bg - Bulgarian, bn - Bengali, ca - Catalan, cs - Czech,
' cy - Welsh, da - Danish, de - German, el - Greek, en - English,
' eo - Esperanto, es - Spanish, et - Estonian, eu - Basque,
' fa - Persian, fi - Finnish, fo - Faroese, fr - French, he - Hebrew,
' hi - Hindi, hr - Croatian/serbian, hu - Hungarian, is - Icelandic,
' it - Italian, Ja - Japanese, Ko - Korean, lt - Lithuanian,
' lv - Latvian, mk - Macedonian, mn - Mongolian, ms - Malay,
' nl - Dutch, no - Norwegian/Bokmal, pl - Polish, pt - Portuguese
' pt_br - Portuguese (Brazil), ro - Romanian, ru - Russian,
' si - Sinhalese, sk - Slovak, sl - Slovenian, sq - Albanian,
' sr - Serbian Cyrillic, sr_latn - Serbian Latin, sv - Swedish,
' th - Thai, tr - Turkish, uk - Ukranian, vi - Vietnamese, xh - Xhosa,
' zh-cn - simplified Chinese, zh-tw - traditional Chinese.
FCKConfig.DefaultLanguage = "zh-cn"

' ==[ Image Settings ]=================================================
' == About: Here you can specify the image settings.
'=======================================================================

' Enables automatic resizing of images, based on the values below.
' = "false" to disable feature.
' = "maxWidth", to enable it and set the max width automatically.
' = "maxHeight", to enable it and set the max height automatically.
' = "{width},{height}" to set custom values.
FCKConfig.ImageAutoSize = true

' ==[ Link Settings ]==================================================
' == About: Here you can specify the link settings.
'=======================================================================

' The Hyperlink Dialog window width (in pixels).
'FCKConfig.LinkDlgWidth = 470

' The Hyperlink Dialog window height (in pixels).
'FCKConfig.LinkDlgHeight = 480
%>
```

  1. 在需要使用 FCKeditor 的页面中引入此 editor_config.asp 文件。

```html

```

在网页中使用 FCKeditor

在需要使用 FCKeditor 的文本框中,设置 id 属性,然后引入 fckeditor.js 库,并在页面加载时调用 FCKeditorAPI.GetInstance(id) 方法来创建一个 FCKeditor 实例:

<textarea id="editor1" name="content"></textarea>
<script type="text/javascript" src="/fckeditor/fckeditor.js"></script>
<script type="text/javascript">
  var oFCKeditor = FCKeditorAPI.GetInstance('editor1');
  oFCKeditor.BasePath = "/fckeditor/";
  oFCKeditor.Config["CustomConfigurationsPath"] = "/fckeditor/editor_config.asp";
  oFCKeditor.ReplaceTextarea();
</script>

示例说明

示例 1:文字颜色修改

在文本编辑器中,用户可以通过选择字体颜色的方式修改所编辑的文本的颜色。

  1. 在编辑器中打开一个已有的文本。
  2. 选择要修改颜色的文本。
  3. 点击工具栏中的“字体颜色”按钮。
  4. 在弹出的颜色选择框中选择所需颜色。
  5. 点击“确定”按钮,所选文本的颜色将会被修改。

示例 2:插入图片

在文本编辑器中,用户可以插入图片到要编辑的文本中。

  1. 在编辑器中打开一个已有的文本。
  2. 在工具栏中点击“插入/编辑图片”按钮。
  3. 在弹出的图片插入窗口中,可以选择现有图片,或上传新的图片。
  4. 如果选择现有图片,点击“确定”按钮,图片将会被插入到编辑器中。
  5. 如果上传新的图片,选择上传图片按钮,并选择要上传的图片文件,点击“确定”按钮,图片将会被上传,并自动插入到编辑器中。

本站文章如无特殊说明,均为本站原创,如若转载,请注明出处:FCKeditor 2.6.5 ASP环境安装配置使用说明 - Python技术站

(0)
上一篇 2023年6月10日
下一篇 2023年6月10日

相关文章

  • css性能优化-will-change使用详解

    那我们来详细讲解一下“CSS性能优化-will-change使用详解”的完整攻略。 一、什么是will-change will-change是CSS属性,用来告诉浏览器某个元素会被改变,从而可以让浏览器提前进行一些准备工作,以提升动画或变形的性能。 二、will-change的语法 will-change有以下几种语法: will-change: auto;…

    css 2023年6月10日
    00
  • CSS实现曲面阴影效果的简单实例(推荐)

    下面是实现曲面阴影效果的完整攻略: 1.引入CSS文件 在HTML文件中引入CSS文件,确保CSS文件路径正确。 <link rel="stylesheet" type="text/css" href="style.css"> 2.定义盒子 首先定义一个外层盒子用作容器,然后在容器内部定…

    css 2023年6月10日
    00
  • 怎么免费激活DA-HelpCreator 附激活教程+注册机

    关于怎样免费激活DA-HelpCreator的过程,这里提供一份完整的攻略,步骤如下: 步骤一:下载DA-HelpCreator 首先,前往DA-HelpCreator官方网站 (https://www.da-helpcreator.com/index.html) 下载最新版的DA-HelpCreator软件(请注意,此软件是一款商业软件,但是提供30天的免…

    css 2023年6月10日
    00
  • div+css实现圆角即网页上常用的圆角效果

    实现圆角效果可以使用CSS3的border-radius属性,也可以使用div+CSS来实现。下面介绍如何使用div+CSS来实现圆角效果。 原理介绍 CSS的div元素可以设置圆角效果,主要通过设置border-radius属性来实现。该属性接受一个或多个值,即可以设置四个圆角的半径,也可以只设置某一个圆角的半径。 实现过程 首先,需要在HTML文件中创建…

    css 2023年6月10日
    00
  • div浮层,滚动条移动,位置保持不变的4种方法汇总

    这里是”div浮层,滚动条移动,位置保持不变的4种方法汇总”的完整攻略: 1. 使用css position属性 当我们在使用 div浮层、滚动条移动等效果时,我们通常会使用css position属性。position属性有多个值,但是常见的是”fixed”和”absolute”。- “fixed” : 固定在页面的某个位置,即使滚动条移动也不会改变位置,…

    css 2023年6月10日
    00
  • 浅谈前端网络、JavaScript优化以及开发小技巧

    浅谈前端网络、JavaScript优化以及开发小技巧 前端技术的发展,让前端页面承载的内容越来越重,优化前端页面成为提高用户体验的必经之路。本文将从网络优化、JavaScript优化以及开发小技巧三个方面来探讨如何优化前端页面。 网络优化 减少HTTP请求 在前端开发中,减少请求次数可以降低页面的加载时间。常见的减少请求次数的方式有两种: 图片合并:将多个小…

    css 2023年6月10日
    00
  • css权威指南–笔记(必看)

    首先需要明确,”CSS权威指南”是一本CSS的经典著作,详细讲解了CSS的各种属性和用法。而”CSS权威指南–笔记(必看)”则是在”CSS权威指南”的基础上,对其内容进行总结、归纳、精简,并加入了作者自己的理解和实践经验,使得读者更加易于理解和掌握CSS的基础和进阶知识。下面是”CSS权威指南–笔记(必看)”的完整攻略: 1. 如何获取”CSS权威指南-…

    css 2023年6月9日
    00
  • CSS3 border-radius圆角的实现方法及用法详解

    CSS3 border-radius圆角的实现方法及用法详解 什么是border-radius? border-radius 是指CSS3中的一个属性,用来设置边框的圆角效果。 border-radius 使用方法 设置圆角的语法如下: border-radius: Xpx [Ypx]; 其中 X 代表水平方向的圆角半径,Y 代表竖直方向的圆角半径。如果 Y…

    css 2023年6月9日
    00
合作推广
合作推广
分享本页
返回顶部