也许有人可以帮我解决以下问题。 我有一个丰富的文本框控件:RichTxtDescription。 我填写的文字如下:
app.use(function(req, res, next) {
// IE9 doesn't set headers for cross-domain ajax requests
if(typeof(req.headers['content-type']) === 'undefined'){
req.headers['content-type'] = "application/json; charset=UTF-8";
}
next();
})
.use(bodyParser.json());
在我的winform应用程序中,richtextbox控件应该被填充(带有新行,粗体等的文本)。 现在,我想将richTxtDescription.Rft转换为html标签,以便在rtf字段上显示它只接受html标签。
有什么建议吗?
谢谢!
答案 0 :(得分:8)
昨天我使用了这个RTF Converter :)我很高兴。
添加对项目的引用,并使用以下代码段作为起点。
IRtfDocument rtfDocument = RtfInterpreterTool.BuildDoc(yourRtfVariable);
RtfHtmlConverter htmlConverter = new RtfHtmlConverter(rtfDocument);
string html = htmlConverter.Convert();