vote up 0 vote down star

Looking and .Net Rich Editor that generates HTML, it is important to be capable of handling Tables, merging Cells among other table stuff.

flag

2 Answers

vote up 0 vote down check

CuteEditor or TinyMCE are probably your best bets.

Disclaimer: WYSIWYG editors bring their own brand of headaches.

link|flag
vote up 1 vote down

you can use webbrowser control
EDIT
Do this and your browser control will allow to edit

...


webBrowser.Navigated += new NavigatedEventHandler(webBrowser_Navigated);

webBrowser.Navigate("about:blank");

void webBrowser_Navigated(object sender, NavigationEventArgs e)
{
     var doc = webBrowser.Document as IHTMLDocument2;

     if (doc != null)
           doc.designMode = "On";
}

and here is how you can call commands on browser

public IHTMLDocument2 Document
{
    get
    {
        return webBrowser.Document as IHTMLDocument2;
    }
 }
 public void SelectAll()
 {
      Document.execCommand("SelectAll", false, null);
 }
link|flag
webBrowser would be for rendering the HTML, I need and editor that creates that HTML – jmayor Jul 16 at 16:13
see edited post – ArsenMkrt Jul 16 at 16:42

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.