FCKeditor在ASP配置环境中的使用

先说一下我的测试环境:XPSP2,IIS5.1,FCKeditor2.0

  在IIS上建立一个新的站点,我直接取名为FCKeditor

  在DW里建立一个相对应的站点,测试服务器为本机,支持VBScript

  下载FCKeditor2.0,这个东西是开源的,网上能下到的地方很多,自己找去……

  下载下来的应该是压缩包,解压到FCKeditor站点根目录,什么都不需要更改,直接就可以开始调用了。等你会了的时候,会发现简单得要死去!

  在站点根目录下,新建一个index.asp页面,段内加如下代码(调用编辑器):

<%
Dim oFCKeditor
Set oFCKeditor = New FCKeditor
oFCKeditor.BasePath = "/FCKeditor/" //设置编辑器的路径,我站点根目录下的一个目录
oFCKeditor.ToolbarSet = "Default"
oFCKeditor.Width = "100%"
oFCKeditor.Height = "600"
oFCKeditor.Value = "" //这个是给编辑器初始值
oFCKeditor.Create "logbody" //以后编辑器里的内容都是由这个logbody取得,命名由你定
%>

<!--p> <br>  Dim oFCKeditor</p> <p>  Set oFCKeditor = New FCKeditor</p> <p>  oFCKeditor.BasePath = "/FCKeditor/" //设置编辑器的路径,我站点根目录下的一个目录</p> <p>  oFCKeditor.ToolbarSet = "Default"</p> <p>  oFCKeditor.Width = "100%"</p> <p>  oFCKeditor.Height = "600"</p> <p>  oFCKeditor.Value = "" //这个是给编辑器初始值</p> <p>  oFCKeditor.Create "logbody" //以后编辑器里的内容都是由这个logbody取得,命名由你定</p> <p> -->

  加了这一段别忘了在index.asp前面第二行加上

  <!--#include file="FCKeditor/fckeditor.asp" -->

你可能感兴趣的:(fckeditor,VBScript,asp,IIS)