

<CKEditor:CKEditorControl runat="server" ID="rteNew" Width="550" Height="400">
</CKEditor:CKEditorControl>
CKEDITOR.editorConfig = function( config )
{
config.toolbar = 'MyToolbar';
config.toolbar_MyToolbar =
[
{ name: 'document', items : [ 'NewPage','Preview' ] },
{ name: 'clipboard', items : [ 'Cut','Copy','Paste','PasteText','PasteFromWord','-','Undo','Redo' ] },
{ name: 'editing', items : [ 'Find','Replace','-','SelectAll','-','Scayt' ] },
{ name: 'insert', items : [ 'Image','Flash','Table' ] },
'/',
{ name: 'styles', items : [ 'Styles','Format' ] },
{ name: 'basicstyles', items : [ 'Bold','Italic','Strike','-','RemoveFormat' ] },
{ name: 'paragraph', items : [ 'NumberedList','BulletedList','-','Outdent','Indent','-','Blockquote' ] },
{ name: 'links', items : [ 'Link','Unlink','Anchor' ] }
];
};
CKEDITOR.replace( 'rteNew',
{
toolbar : 'MyToolbar',
});
Re: ASP.Net (VB) Toolbars Missing
Re: ASP.Net (VB) Toolbars Missing
Just add the ckeditor.js reference in your page header and it should start working:
Re: ASP.Net (VB) Toolbars Missing
[Resolved] Re: ASP.Net (VB) Toolbars Missing
"AuthName directive not found"
[physicalpath]\ckeditor\.htaccess
...
After a bit of searching, the solution was to simply remove the .htaccess file entirely.