Dim SB As New System.Text.StringBuilder
Dim SW As New StringWriter(SB)
Dim htmlTW As New HtmlTextWriter(SW)
Dim re As New CuteEditor.Editor
re.ID = "editor"
re.RenderBeginTag(htmlTW)
re.RenderControl(htmlTW)
re.RenderEndTag(htmlTW)
Response.Write(SB.ToString())
Code above only succesfully displaying a part of a table and textarea
but still missing the divtool bar and iframe and its all configurations.
I just wonder if some one can give an advise. I think there should be a way to display the cute editor, as all the methods are provided by the dll.