我在config.js文件中为FCKeditor定义了一个自定义工具栏。我不知道如何在asp中实现这个工具栏。任何帮助都会很棒。
答案 0 :(得分: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"
%>