ASP.NET MVC3 中 rtf 格式的富文本编辑器
我知道有各种各样的 javascript 富文本编辑器。
但我还没有遇到过一种 rtf 格式(不是 HTML)的格式。
而且免费。
我刚刚花了几个小时实现 Ckeditor,却发现它无法识别数据库中的 rtf 格式的注释。 :(
所以我需要的是 ASP.NET MVC3 的 RTF 编辑器
I know there are al sorts of javascript Rich text editors out there.
But I have yet to come across one that is rtf format (NOT HTML).
And free.
I just spent the last few hours implementing Ckeditor, only to find that it doesnt recognise the rtf formatted notes in the database. :(
So what I need is RTF editor for ASP.NET MVC3
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我认为那不存在。甚至 TinyMCE 和 XStandard 也不支持 RTF。
您必须使用 RTF 到 HTML 转换器(例如 这个)并将富文本存储在 HTML 中。
I don't think that exists. Not even TinyMCE and XStandard support RTF.
You'll have to use an RTF-to-HTML Converter (like this one) and store your rich text in HTML instead.