Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Need good HTML content editor for ASP.NET

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.

like image 732
user666121 Avatar asked Nov 16 '25 05:11

user666121


1 Answers

There is lots of options if you are not needing to use the control in an update panel:

  1. FreeTextBox (Seems to be the most ASP.NET friendly, haven't used)
  2. TinyMCE
  3. AJAX Toolkit HTML Editor
  4. CKEditor

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.

Related Question...

like image 81
cweston Avatar answered Nov 18 '25 21:11

cweston