<%@ Page Language="C#" AutoEventWireup="true" %> <%@ Register Assembly="CKEditor.NET" Namespace="CKEditor.NET" TagPrefix="CKEditor" %> Shared Toolbars — CKEditor for ASP.NET Sample

CKEditor for ASP.NET Sample — Shared Toolbars

This sample shows how to configure multiple CKEditor for ASP.NET instances to share some parts of the interface. You can choose to share the toolbar, the elements path, or both.

<CKEditor:CKEditorControl ID="CKEditor1" SharedSpacesTop="divTopShared" SharedSpacesBottom="divBottomShared" runat="server"></CKEditor:CKEditorControl>
	
<CKEditor:CKEditorControl ID="CKEditor2" SharedSpacesTop="divTopShared" SharedSpacesBottom="divBottomShared" runat="server"></CKEditor:CKEditorControl>

<CKEditor:CKEditorControl ID="CKEditor3" SharedSpacesTop="divTopShared" runat="server"></CKEditor:CKEditorControl>

<CKEditor:CKEditorControl ID="CKEditor4" runat="server"></CKEditor:CKEditorControl>

Editor 1 (uses shared toolbar and elements path): <p>This is some <strong>sample text</strong>. You are using <a href="http://ckeditor.com/">CKEditor</a>.</p>
Editor 2 (uses shared toolbar and elements path): <p>This is some <strong>sample text</strong>. You are using <a href="http://ckeditor.com/">CKEditor</a>.</p>
Editor 3 (uses shared toolbar only): <p>This is some <strong>sample text</strong>. You are using <a href="http://ckeditor.com/">CKEditor</a>.</p>
Editor 4 (no shared spaces): <p>This is some <strong>sample text</strong>. You are using <a href="http://ckeditor.com/">CKEditor</a>.</p>