首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > ASP >

输出fckeditor?该怎么解决

2012-04-20 
输出fckeditor?用程序输出这样的字符串:str str & tabletrtdaabbcc/td/tr/tablestr str

输出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上头了..怎么回事?该如何修正?

[解决办法]

探讨
老大,有没有办法修正?因为需要程序输出的.

热点排行