vote up 9 vote down star
11

I am looking for a good, solid, rich text editor for my ASP.NET web app (3.5).

I know there are some out there and I've been looking around for a while with no luck. Does anyone know if the one SO uses (the one I'm typing in right now) is available somewhere?

Your help/guidance is appreciated!

flag

60% accept rate

6 Answers

vote up 18 vote down check

Stackoverflow uses WMD Editor.

FCKEditor is also easy to integrate with ASP .NET.

You have also more options like:

link|flag
For PhiLho's sake, and probably yours too, I'll put my thank you here. "Excellent. Thank you CMS!" – deadbug Dec 13 '08 at 8:52
You're welcome deadbug! – CMS Dec 13 '08 at 15:46
The SO guys have also been doing some work on the editor: blog.stackoverflow.com/2009/01/… The code can be found here: github.com/derobins/wmd/tree/master – Zhaph - Ben Duguid Feb 9 at 22:26
vote up 2 vote down

You can use any javascript editor, not only asp.net. For example TinyMCE and so on.

link|flag
vote up 3 vote down

Stackoverflow doesn't provide a rich text editor. It has a plain text editor with some buttons for adding markup.

link|flag
vote up 1 vote down

We use two different editors at my job. XStandard and Telerik. XStandard is great if you have major concerns about the content being XHTML formatted.

There are a couple of drawbacks however, the editor runs on the client (like Flash) and must be installed by the user upon their first visit. This isn't a major concern if you're running an intranet app, but if it's available to the public then it could be kind of a pain.

The other main drawback is you can't do CSS overlays with XStandard, the editor will sit on top. Not cool if you are trying to do a fancy site.

Telerik is great in the areas that Xstandard is weak, however, it's reformatting of pasted content into XHTML is spotty.

Both of those options are fairly pricey. For free? I'd probably go with FCKEditor.

Hope that helps.

link|flag
vote up 0 vote down

Try WYMeditor.

link|flag
vote up 2 vote down

If you're looking for something quick and easy I have had some nice success with Jquery WYSIWIG - One line of JS and it's there and it works well.

$('#mytextarea').wysiwyg();
link|flag

Your Answer

Get an OpenID
or

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