使用FCKeditor控件从数据库读出的字符串换行了,然后控件就不显示?求高手解决。。。
2个回答
展开全部
使用ASP的方式吧,我这个是把原来网站后台的ewebeditor换成fckeditor用的代码
<textarea name="Content" cols="70" rows="10" readonly="readonly" style="display:none" id="Content"><%=Article.Content%></textarea>
<%
Dim oFCKeditor
Set oFCKeditor = New FCKeditor
oFCKeditor.BasePath = "/gbxx/fckeditor/"
'设置编辑器的路径,我站点根目录下的一个目录
'如果你改了目录的名,这里就需要改成那个目录名
oFCKeditor.ToolbarSet = "Default"
oFCKeditor.Width = "600"
oFCKeditor.Height = "400"
oFCKeditor.Value = ""
'这个是给编辑器初始值
oFCKeditor.Create "Content"
'以后编辑器里的内容都是由这个Content取得,命名由你定
'oFCKeditor.Value = Request("Content")
%>
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询