Back to previous

FCKEditor - Best Open Source WYSIWYG Editor

Have been playing a lot with a number of WYSIWYG text editors, such as RadEditor and many other free ones, but the one that I liked the most would be FCKEditor, which is open source editor, written in Javascripts and support a wide number of languages like PHP, ASP, JAVA, .NET, CFM, etc. It's extremely easy to integrate, especially in .NET.

Steps to install and integrate:
1. Download and extract the whole folder into your web application root.
2. Download the .NET component and add into the reference.
3. Boom, use it:

FCKeditor txbFckEditor = new FCKeditor();
txbFckEditor.ID = "txb" + strColumn;
txbFckEditor.Height = 400;
txbFckEditor.Width = 700;
txbFckEditor.BasePath = Page.ResolveUrl("~/Fckeditor/");

ShareThis

If you think this post is useful, please recommend me at the bottom of the page. ;)

Discussion