I’m trying to use this wysiwyg editor in an asp.net application. But It doesn’t work..
So I add reference to the DLL and make this asp code:
<%@ Page MasterPageFile="~/Site.master" Language="C#" AutoEventWireup="true" CodeBehind="test.aspx.cs" Inherits="test" Title="Tests" %>
<%@ Register Assembly="CKEditor.NET" Namespace="CKEditor.NET" TagPrefix="CKEditor" %>
<asp:Content ID="headContent" ContentPlaceHolderID="HeadContent" runat ="server" >
</asp:Content>
<asp:Content ID="Content1" ContentPlaceHolderID="MainContent" runat="server">
<div>
<CKEditor:CKEditorControl ID="test" runat="server">test</CKEditor:CKEditorControl>
</div>
</asp:Content>
And the result is

So it seems it is missign something.. I try to add TooBar = “Full” in the control’s properties but it doen’t work. Can someone using this control help me?
Thanks a lot
I would check whether some Javascript errors occur on page loading. They can provide information about the problem – missing some JS files of CKEditor etc.