我正在尝试从可爱的编辑器输出中呈现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);
}
答案 0 :(得分:0)
看起来您正在将文本直接呈现到回收站(TextWriter.Null)
您应该写入您正在生成的响应的输出流。试试这个(不知道它是否编译)
XhtmlTextWriter xtw = XhtmlTextWriter(new TextWriter(Response.OutputStream));