Asp中调用Fckeditor.Asp不显示的原因

2013-04-01 浏览:1231
Asp中调用Fckeditor.Asp不显示的原因
评论:(0)复制地址

最近在整合一个Asp程序,涉及到使用Fckeditor,调用代码如下:

<%
Dim oFCKeditor
Set oFCKeditor = New FCKeditor
oFCKeditor.BasePath = "../FCKeditor/"
oFCKeditor.ToolbarSet = "Default"
oFCKeditor.Width = "100%"
oFCKeditor.Height = "250"
oFCKeditor.Value = hContent
oFCKeditor.Create "hContent"
%>

但是Fckeditor在页面中不显示,最后发现只需要在Asp页面顶端加上:
<!--#include file="../Fckeditor/Fckeditor.Asp" -->

 

评论:(0)复制地址
发布:苗景云 | 分类:IT技术&设计 | Tags:ASP Fckeditor

发表评论:

◎欢迎参与讨论,请在这里发表您的看法、交流您的观点。