asp如何将内容绑定在fckeditor编辑框中
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了asp如何将内容绑定在fckeditor编辑框中相关的知识,希望对你有一定的参考价值。
本人在用asp做一个简单的新闻系统,其它的在线编辑器由于兼容性不是太好所以选择了fckeditor,但如何将内容绑定在其编辑框中,然后修改新闻后提交修改后的新闻到数据库?
参考技术A 呵呵.我也正在想这个 问题..如果做发布的话..
先把fckeditor文件放在你的网页保存的同一目录下.
在第二行加入...
<!--#include file="FCKeditor/fckeditor.asp" -->
下面的代码用来替换你原有的文本域代码
<%
Dim oFCKeditor
Set oFCKeditor = New FCKeditor
oFCKeditor.BasePath = "/FCKeditor/"
oFCKeditor.ToolbarSet = "Default"
oFCKeditor.Width = "100%"
oFCKeditor.Height = "600"
oFCKeditor.Value = ""
oFCKeditor.Create "logbody"
%>
你把logbody替换成你数据库中内容的名称就可以了.
如果要做编辑的话.我现在也少知道如何调用原来数据库中的内容. 参考技术B 调用的时候不是有这个么?
<!-- #INCLUDE file="../FCKeditor/fckeditor.asp" -->
<%
Dim sBasePath
sBasePath = Request.ServerVariables("PATH_INFO")
sBasePath = Left( sBasePath, InStrRev( sBasePath, "/_samples" ) )
Dim oFCKeditor
Set oFCKeditor = New FCKeditor
oFCKeditor.BasePath = sBasePath
oFCKeditor.Value = rs_home("content")
oFCKeditor.Create "content"
%>
你可以在这里弄一个变量:oFCKeditor.Value = rs_home("content")&YOURKEYWORDS
同时给变量赋值。
另外,提醒您注意FCK编辑器的公共上传BUG。本回答被提问者和网友采纳
asp中如何使用fckeditor插入视频文件!
开发环境:ASP+FCKEDITOR 2.6.6
在网上找到如何上传视频文件的内容,按其操作还是不能插入视频,
请各位高手给予帮助或提供一份经过使用的FCKEDITOR,不胜感激!
以上是关于asp如何将内容绑定在fckeditor编辑框中的主要内容,如果未能解决你的问题,请参考以下文章