Looking and .Net Rich Editor that generates HTML, it is important to be capable of handling Tables, merging Cells among other table stuff.
+2
A:
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);
}
ArsenMkrt
2009-07-16 16:09:05
webBrowser would be for rendering the HTML, I need and editor that creates that HTML
jmayor
2009-07-16 16:13:31
see edited post
ArsenMkrt
2009-07-16 16:42:26
A:
CuteEditor or TinyMCE are probably your best bets.
Disclaimer: WYSIWYG editors bring their own brand of headaches.
Jon Smock
2009-07-16 16:51:20