fckeditor无法显示“无法找到网页”,急……

来源:百度知道 编辑:UC知道 时间:2024/06/28 17:21:31
我在用FCKeditor时,为什么显示"无法找到网页...."信息.这是为什么.
<%
Dim oFCKeditor
Set oFCKeditor = New FCKeditor
oFCKeditor.BasePath = "/FCKeditor/"
oFCKeditor.ToolbarSet = "Basic"
oFCKeditor.Width = "100%"
oFCKeditor.Height = "300"
oFCKeditor.Value = ""
oFCKeditor.Create "hjqk"
%>

我一直用在.NET上的,没有用在ASP过

不过从你的问题来看:

你URL是否重写,如果重写请不要重写为.HTML的格式

如果没有重写,那就是路径的问题了,你可以查看右键看路径,在看是否与你路径相同

如果还是不能解决

你在用成JS试试

<script type="text/javascript">
var oFCKeditor = new FCKeditor( 'oFCKeditor' ) ;
oFCKeditor.BasePath = '/' ;
oFCKeditor.ToolbarSet = 'Basic' ;
oFCKeditor.Width = '100%' ;
oFCKeditor.Height = '400' ;
oFCKeditor.Value = '' ;
oFCKeditor.Create() ;
</script>

如果还是不行, 那很抱歉 我也不知道了

多搜索,多找找就明白了