Asp classic asp中的FCKeditor工具栏

Asp classic asp中的FCKeditor工具栏,asp-classic,fckeditor,Asp Classic,Fckeditor,我在config.js文件中为FCKeditor定义了一个自定义工具栏。我不知道如何在asp中实现这个工具栏。任何帮助都会很好。我无法查看该网站(我的工作认为它是免费软件,对网络是一种危险),但您可以指定在创建COM实例时使用的工具栏 编辑:在那里 我无法查看该网站(我的工作认为它是免费软件,对网络有危险),但您可以指定在创建COM实例时使用的工具栏 编辑:在那里 <% Dim oFCKeditor Set oFCKeditor = New FCKeditor oFCKedi

我在config.js文件中为FCKeditor定义了一个自定义工具栏。我不知道如何在asp中实现这个工具栏。任何帮助都会很好。

我无法查看该网站(我的工作认为它是免费软件,对网络是一种危险),但您可以指定在创建COM实例时使用的工具栏

编辑:在那里


我无法查看该网站(我的工作认为它是免费软件,对网络有危险),但您可以指定在创建COM实例时使用的工具栏

编辑:在那里


<%
Dim oFCKeditor
Set oFCKeditor = New FCKeditor
oFCKeditor.BasePath = "/fckeditor/"
oFCKeditor.ToolbarSet = "MyToolbar"
oFCKeditor.Value = "<p>This is some <strong>sample text</strong>. You are using <a href=""http://www.fckeditor.net/"">FCKeditor</a>."
oFCKeditor.Create "FCKeditor1"
%>