tags:

views:

733

answers:

1
+2  Q: 

MVC HTML Editor

Can you recommend an WYSIWYG HTML Editor that works well with ASP.NET MVC? Any experience of the retail version of Obout's HTML Editor?

+5  A: 

I use tinymce. Its a javascript wysiwyg. It will turn any textarea into a wysiwyg with a simple init script

It will write great xhtml and plugins are easy to add or download and it will work with mvc or whatever technology is used so long as it renders html

Sheff
OK, thanks. Is it easy to style TinyMCE's dialogs?
pacoza
Yes simply add a location to a stylesheet in the init function. the docs are pretty good
Sheff