I've integrated CKEditor to my ASP.NET app which is working fine. Here's how I'm using it -- I've noticed that a lot of people had issues with this:
<asp:TextBox ID="tbEditor" runat="server" class="ckeditor" />
Nothing fancy but it works. My issue is with integrating RequiredFieldValidator with this. When add the the validator, I have to hit the submit button twice. The first time around, I get the validator message telling me that tbEditor is a required field even though I already have filled out that field i.e. tbEditor.
If I hit the submit button again, everything works fine but clearly this is annoying. Any idea how I fix this?