• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

ASP compatible WYSIWYG Text Editor

Sphexi

Diamond Member
What I'm looking for is something pretty much like you see here on Anandtech when creating a post. Not quite as robust, as all we need is text formatting, and we'll filter out everything else (it's for product description fields, no links or special code needed or allowed).

I've had a bit of a difficult time knowing what to look for, to see if there's any js versions of this out there, or an ASP control of some sort, some example that we could look to as far as designing our own, or even purchasing something we could integrate.

Any ideas?
 
If you're looking at classic ASP then you can look at pretty much any JS WYSIWYG editor out there.

It does sound like you are after ASP.NET controls though, so you can look for something like fckeditor, timyMCE, FreeTextBox etc which do have versions which are wrapped up into controls for you to use in your codebehind.
 
If you're looking at classic ASP then you can look at pretty much any JS WYSIWYG editor out there.

It does sound like you are after ASP.NET controls though, so you can look for something like fckeditor, timyMCE, FreeTextBox etc which do have versions which are wrapped up into controls for you to use in your codebehind.

Do I have the right term for it though? WYSIWYG text editor? I wasn't even sure what to really call it, so I was having trouble Googling it.

I'll look into the ones you mentioned, we're currently ASP classic based, but have several high end .NET developers who are slowly moving portions of our site/system over. The service in question is quite old though, I think it's actually a lot of Java, but any suggestions help 🙂

Thanks!
 
If you want to capture any formatting like bold text, italic etc then you are looking for a WYSIWYG editor. If it's just plain text you should just use a normal html textarea and just strip out anything you don't want saved to db.
 
Back
Top