Search code examples
asp.netasp.net-mvc-3richtextboxrtfrichtext

Rich text Editor for rtf format, in ASP.NET MVC3


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


Solution

  • 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.