0
xhtmlをかわいいエディタ出力からレンダリングして、ページにリッチテキストを表示しようとしています。私はこれを試みているが、それは私のために働いているようではない。xhtmlをページにレンダリングする際に問題が発生しました
//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);
}