up vote 1 down vote favorite
1
share [g+] share [fb]

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

link|improve this question

feedback

2 Answers

up vote 0 down vote accepted

CuteEditor or TinyMCE are probably your best bets.

Disclaimer: WYSIWYG editors bring their own brand of headaches.

link|improve this answer
feedback

you can use webbrowser control
EDIT
This will convert your webbrowser control to HTML Editor

...


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|improve this answer
webBrowser would be for rendering the HTML, I need and editor that creates that HTML – jmayor Jul 16 '09 at 16:13
see edited post – ArsenMkrt Jul 16 '09 at 16:42
feedback

Your Answer

 
or
required, but never shown

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