I am trying to render xhtml from cute editor output to display rich text in my page. I'm trying this but it doesn't seem to be working for me.
//ce_Document is my instance of cute editor
public void btn_SaveMessage_Click(object sender, EventArgs e)
{
XhtmlTextWriter xtw = new XhtmlTextWriter(System.IO.TextWriter.Null);
xtw.Write(ce_Document.XHTML);
}