Reputation: 33
I need a Javascipt text editor which can be used to write posts by portal users. It should provide at least some text formatting and image stored on other sites insertion. Moreover, really important things is a solution to filter text on server side to get rid of security issues. I'm using the ASP.NET platform.
Upvotes: 3
Views: 1119
Reputation: 11647
There is lots of options if you are not needing to use the control in an update panel:
The situation where you run into problems when using these with ASP.NET is when they are wrapped within update panels. There are many annoyances setting the hooks in place to trigger the controls to update upon the async postback and refresh themselves when the request ends. I have spent many hours attempting to get these to work with update panels with much frustration.
Upvotes: 6
Reputation: 532665
If you like the editor on SO, you could use it: WMD and MarkdownSharp.
Upvotes: 1
Reputation: 5209
There's a crossover here with this question (assuming you want to use jQuery of course):
https://stackoverflow.com/questions/1141073/whats-the-best-wysiwyg-editor-for-use-with-jquery
Upvotes: 0