views:

495

answers:

6

I am trying to add a rich text editor in my web page where users can write reviews and format what they have written...something similar to the editor in which we write our posts on this site... can anyone point me to the right direction regarding this...any tutorial that would help me build such a component... Also i want a free product....(Forgot to mention earlier...)

+3  A: 

The editor used on Stack Overflow is the WMD Editor.

The current version used on the site has been updated by Jeff Attwood and other site users and you can read about it here and get a copy of the code for your own site.

I think you'd be better off using (and perhaps modifying) an existing component rather than writing your own from scratch.

Dave Webb
WMD editor is a liscenced editor??
programmer
No it isn't. You can get it for free. If you are going to use it I'd recommend following my "get a copy of the code" link so you can get a copy of the updated version.
Dave Webb
A: 

I've been using the Telerik r.a.d Editor, and been very happy with it.

Tor Haugen
Its not free though; you need a developer license!
Nahom Tijnam
+5  A: 

Something in the likes of TinyMCE or FCKeditor, perhaps.

They're quite complete, and customisable.

Berzemus
A: 

http://freetextbox.com/

BenB
A: 

here is yet another one: NicEdit

Natrium
A: 

after much research here is what i did...

i needed a control that was free and easy to use..all the editors that i went through came with a licence so i decided to make my own control!!!!

well..i couldnt do that on my own so i used the help of a few sites....

http://stackoverflow.com/questions/299577/javascript-rich-text-editors

http://aspalliance.com/1092_Rich_Text_Editor_Part_I

http://ws.aspalliance.com/1092_Rich_Text_Editor_Part_II and a few others too...

so the best option for me was to build my own control so that i could customize it according to my needs....

programmer