Hi - I've started a brand-new project to test this out. As far as I can tell, I've followed the instructions at http://docs.cksource.com/CKEditor_3.x/Developers_Guide/ASP.NET/Integration_Advanced to the letter. My page source is below:
<%@ Page Language="vb" AutoEventWireup="false" CodeBehind="CKEDIT.aspx.vb" Inherits="CKTESTTT.CKEDIT" %>
<%@ Register Assembly="CKEditor.NET" Namespace="CKEditor.NET" TagPrefix="CKEditor" %>
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title></title>
</head>
<body>
<form id="form1" runat="server">
<div>
<CKEditor:CKEditorControl ID="CKEditor1" BasePath="/ckeditor/" runat="server"></CKEditor:CKEditorControl>
</div>
</form>
</body>
</html>
When I run this I get as shown below - a useless form with nowhere to enter/edit text!! All the buttons are 'greyed-out' and I just get JS errors if I click any of them.
If I look at any of the 'sample' pages, they show the same problem.
What have I missed?!?! Thanks.
Never mind!! I have just now
Never mind!! I have just now downloaded the 'Basic' package and it works as expected.
I had previously downloaded a 'custom' package by selecting the 'Full' package and then de-selecting some items. Not sure what I could have deselected to cause this, but it appears that was the cause of the problem.