Log in or register to post comments
Last post
Toolbars missing, ASP.Net
Hi,

I am trying to implement CKeditor into an ASP.net page, unfortunately the toolbars do not show.

I have added a reference to the DLL and added the following to the .aspx page:

<%@ Register Assembly="CKEditor.NET" Namespace="CKEditor.NET" TagPrefix="CKEditor" %>

...

<CKEditor:CKEditorControl ID="CKEditor1" runat="server" Toolbar="Basic"
Width="600px">
</CKEditor:CKEditorControl>

Viewing from IE9:

Image

In the above, I can type into the white textbox but there are no toolbars to format the text. I followed the user guides.

I downloaded the ASP.net .zip package. I can view the files in the _Samples directory so I presume it is installed correctly.

Any ideas much appreciated as I'd really like to add CKeditor to my site.

Thanks,
Jon.
Re: Toolbars missing, ASP.Net
set toolbar properties in config.js instead of aspx page.
config.toolbar = 'Basic';