<%@ Page Language="C#" AutoEventWireup="true" %>
<%@ Register Assembly="CKEditor.NET" Namespace="CKEditor.NET" TagPrefix="CKEditor" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<script type="text/javascript">
//<![CDATA[
// Replace the <textarea id="editor1"> with a CKEditor
// instance, using default configuration.
CKEDITOR.replace('editor1',
{
extraPlugins: 'timestamp',
toolbar:
[
['Bold', 'Italic', '-', 'NumberedList', 'BulletedList', '-', 'Link', 'Unlink'],
['Timestamp']
]
});
//]]>
</script>
<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" runat="server" Height="200"></CKEditor:CKEditorControl>
</div>
</form>
</body>
</html>
Sat, 08/13/2011 - 07:02
#1

Re: How to use CKEditor with a custom plugin
Re: How to use CKEditor with a custom plugin
Re: How to use CKEditor with a custom plugin
Re: How to use CKEditor with a custom plugin
Try to replace this with
Re: How to use CKEditor with a custom plugin
Re: How to use CKEditor with a custom plugin