I've been going through various WYSIWYG editors lately. At work we use KTML (which no longer exists, so no point in looking for it). It use to be a Dreamweaver extension created by InterAKT. To be honest, I have no idea why it was picked over the multitude of other options. And I can say without a shadow of a doubt, that I hate it. It never quite outputs the correct mark up (or at least not what you'd expect), has issues with tables, etc. So I've been looking for other items out there to replace it.
The two items I ended up looking at were TinyMCE and FCKEditor. I currently use TinyMCE on the site here, so I wanted to get a bit more experience with FCKEditor so I could make a decision. Downloaded the code, the .Net adapter, etc. and tried it out. Instantly I was struck with issues when it came to uploading files (and I had set up the config correctly). There is a small issue that you will run into with the connector.aspx file if you're using themes. Specifically, it doesn't have a header. You have to have a header if you're going to use themes. So all you need to do is go into the file and switch
<FCKeditor:Config id="Config" runat="server"></FCKeditor:Config>
to
<FCKeditor:Config id="Config" runat="server"></FCKeditor:Config>
<html xmlns="http://www.w3.org/1999/xhtml" >
<head id="Head1" runat="server">
</head>
</html>
This annoyed me to no end as I wasn't even getting an error message... Anyway, hopefully this helps you out and you don't have to deal with the same issues that I did...
7f3a1359-4c32-4157-bd6d-134aba520f14|0|.0