1

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

4

1 回答 1

1

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

http://docs.fckeditor.net/FCKeditor_2.x/Developers_Guide/Integration/ASP

编辑:就是这样! http://docs.fckeditor.net/FCKeditor_2.x/Developers_Guide/Configuration/Toolbar

<%
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"
%>
于 2009-03-10T20:47:17.803 回答