Posted by Alec on Fri, 01 May 2009, in Tools
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/");