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