I just purchased the CKEditor for asp.net. I've set up my page with the CKEditor:CKEditorControl and it is displaying on my web page. All is good so far.
But, for the life of me I can't get any Javascript to work to GET and SET the html. Could you please help? Here is what my page looks like so far...
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="HTMLEditor.aspx.cs" Inherits="HTMLEditor" %>
<%@ Register Assembly="CKEditor.NET" Namespace="CKEditor.NET" TagPrefix="CKEditor" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title></title>
<script type="text/javascript">
$(document).ready(function () {
// Get the editor instance that we want to interact with.
var editor = CKEDITOR.instances.CKEditor1; // This is always undefined.
var value = "hello<br/>hello<br/>";
editor.insertHtml(value); // FAIL!!!
});
</script>
</head>
<body>
<form id="form1" runat="server">
<div>
<CKEditor:CKEditorControl ID="CKEditor1" runat="server" Toolbar="Source
Bold|Italic|Underline|Strike|-|Subscript|Superscript
NumberedList|BulletedList|-|Outdent|Indent
Font|FontSize|TextColor|BGColor">
</CKEditor:CKEditorControl>
</div>
</form>
</body>
</html>

Hi Trallan,
Hi Trallan,
sorry to hear you are having trouble configuring CKEditor for ASP.NET. Since you are using the commercial version, the quickest way to resolve this is to use the support channel that you are entitled to. This will let our QA/ devs look into this matter for you ASAP.
Documentation Manager, CKSource
See CKEditor 5 docs, CKEditor 4 docs, CKEditor 3 docs, CKFinder 3 docs, CKFinder 2 docs for help.
Visit the new CKEditor SDK for samples showcasing editor features to try out and download!