当前位置: 代码迷 >> ASP >> 输出fckeditor?该怎么解决
  详细解决方案

输出fckeditor?该怎么解决

热度:65   发布时间:2012-04-20 15:27:03.0
输出fckeditor?
用程序输出这样的字符串:

str = str & "<table><tr><td>aabbcc</td></tr></table>"

str = str & "<table><tr><td>"


  Set oFCKeditor = New FCKeditor 
  oFCKeditor.BasePath = "../fckeditor/"
  oFCKeditor.ToolbarSet = "Basic" 
  oFCKeditor.Width = "600" 
  oFCKeditor.Height = "310"

oFCKeditor.Config("AutoDetectLanguage") = False
oFCKeditor.Config("DefaultLanguage") = "zh-cn"
  
  oFCKeditor.Value = ""
 
  oFCKeditor.Create "content"


str = str & "</td></tr></table>"

Response.Write str


输出后,fckeditor编辑位于aabbcc上头了..怎么回事?该如何修正?

------解决方案--------------------
探讨
老大,有没有办法修正?因为需要程序输出的.
  相关解决方案