asp如何将内容绑定在fckeditor编辑框中
本人在用asp做一个简单的新闻系统,其它的在线编辑器由于兼容性不是太好所以选择了fckeditor,但如何将内容绑定在其编辑框中,然后修改新闻后提交修改后的新闻到数据库?...
本人在用asp做一个简单的新闻系统,其它的在线编辑器由于兼容性不是太好所以选择了fckeditor,但如何将内容绑定在其编辑框中,然后修改新闻后提交修改后的新闻到数据库?
展开
2个回答
2010-04-07
展开全部
呵呵.我也正在想这个 问题..
如果做发布的话..
先把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替换成你数据库中内容的名称就可以了.
如果要做编辑的话.我现在也少知道如何调用原来数据库中的内容.
如果做发布的话..
先把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替换成你数据库中内容的名称就可以了.
如果要做编辑的话.我现在也少知道如何调用原来数据库中的内容.
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
调用的时候不是有这个么?
<!-- #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。
<!-- #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。
本回答被提问者和网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询