Click here to Skip to main content
15,884,836 members
Articles / Web Development / ASP.NET
Tip/Trick

How to Integrate CKEditor with ASP.NET

Rate me:
Please Sign up or sign in to vote.
4.95/5 (20 votes)
22 Jan 2013CPOL3 min read 158.7K   16.9K   19   33
This is meant for easy integration of CKEditor with ASP.NET

Introduction

CKEditor is one of the most popular web text editors nowadays. Here is the official Site of CKEditor. Usually, we use this tool for easy and friendly back end data entry. This tool is rapidly used for composing email messages. On the other hand, CKEditor is an open source application, which means it can be modified any way we want. So I found it very useful for our day to day practice. Today, I am going to describe an easy way to integrate CKEditor with ASP.NET web projects.

Background

As a web developer, I found that I am using CKEditor on a regular basis. Each time, I was getting into some trouble that took my work hour unnecessarily. That's why I made a decision to find an easy way to integrate this useful tool with my ASP.NET web projects.

Points of Interest

I think this will be interesting and time consuming for CMS type data entry where CKEditor is quite often used. As this process can be used easily and it supports easy integration between different projects, programmers will be helped a lot.

Using the Code

Try the following easy steps to complete the task.

  1. Open New Project [File->New->Project-> ASP.NET Empty Web Application]
  2. Name the Project as you like, I named it "TestCkEditor"
  3. Download the attached Zip file (CKEDditor.zip) and extract.
  4. You will find a bin folder when you extract the CKEditor.zip
  5. Go to the Solution explorer

    [References->Right
    Mouse Click -> Add References->Browse-> Then browse the bin folder of the extracted (CkEditor.zip) -> Select The Two DLLs
    (CKEditor.dll & CKEditor.Net.dll)->OK]

  6. There is a folder called ckeditor in small caps. Find the folder. This folder contains all necessary files (.js , .css, images, themes, etc. that are necessary for successful integration of this tool.
  7. Copy this folder and paste it in your project.
  8. Then add a new aspx page to the project.
  9. Then write this single line of code just before the HTML tag of your .aspx page. This block of line will register the DLL file that you have just added & using the "TagPrefix" will call the CKEditorControl. Here the BasePath is the folder you have just added which contains all necessary files to load the CKEditor.
    ASP.NET
    <%@ Register Assembly="CKEditor.NET" Namespace="CKEditor.NET" TagPrefix="CKEditor" %>
    
  10. Then add this div inside of the form tag of your aspx page and we are done.
    ASP.NET
    <div>
       <CKEditor:CKEditorControl ID="CKEditor1" BasePath="/ckeditor/" runat="server">
       </CKEditor:CKEditorControl>
    </div>
  11. Build the project and then run. You will find CKEditor with full features at your screen. Then customize as per your requirements.

Here is the back end code under button click.

HtmlEncode and HtmlDecode are useful ways to use in here. HTML encoding makes sure that text is displayed correctly in the browser and not interpreted by the browser as HTML. For example, if there is a string in the CKEditor which contains a less than sign (<) or greater than sign (>), the browser would interpret these characters as the opening or closing bracket of an HTML tag. When the characters are HTML encoded, they are
converted to the strings &lt; and&gt;, which causes the browser to display the less than sign and greater than sign correctly.

protected void Button1_Click(object sender, EventArgs e)
        {
            string str = CKEditor1.Text;
            string str1 = Server.HtmlEncode(str);
            string str2 = Server.HtmlDecode(str);
            lblText.Text = str2;
        }  

On the other hand, Html Decoding does not convert any tag to string. It simply interprets your input into plain HTML.

Here is an example:

Image 1

There is a paragraph in the CKEditor. So the HtmlDecode converts into a plain HTML. On the other hand, HtmlEncode converts them into string.

So now I think you will find it easier to work with CKEditor.

Happy coding.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer Cefalo
Bangladesh Bangladesh
Hi,

I am Palash Debnath. I have been working on windows technologies since 2008. I started with ASP.NET. Then I moved to Windows Form and from the last year I have been working with Windows 8 app development. Work with Windows 10 apps development as well. Now I have been working with Microsoft Azure. I have completed my Undergraduate from Khulna University of Engineering in Computer Science & Engineering. Currently working as a Senior Software Engineer at Cefalo.

Comments and Discussions

 
QuestionSource Code Pin
Member 1460748029-Sep-19 16:20
Member 1460748029-Sep-19 16:20 
QuestionHow to incorporate fonts Pin
Radhakrishnan V27-Jul-18 2:23
Radhakrishnan V27-Jul-18 2:23 
QuestionDictionary and Spell Check Pin
Radhakrishnan V9-Jul-17 17:44
Radhakrishnan V9-Jul-17 17:44 
AnswerRe: Dictionary and Spell Check Pin
dpalash23-Jul-17 22:38
professionaldpalash23-Jul-17 22:38 
GeneralRe: Dictionary and Spell Check Pin
Radhakrishnan V27-Jul-18 2:22
Radhakrishnan V27-Jul-18 2:22 
GeneralVery good article with awesome illustration Pin
Member 1328665330-Jun-17 2:17
Member 1328665330-Jun-17 2:17 
QuestionThank you Pin
lmickelb13-Apr-16 11:00
lmickelb13-Apr-16 11:00 
Questionhow to save the data in richtextbox to openoffice using web application c# and asp .net Pin
Member 1232452323-Feb-16 0:46
Member 1232452323-Feb-16 0:46 
PraiseThanks Pin
Joakq10-Nov-15 5:51
Joakq10-Nov-15 5:51 
GeneralCk Editor Pin
Aditya Chauhan8-Jun-15 6:28
Aditya Chauhan8-Jun-15 6:28 
Questionworking in ckeditor Pin
Member 1145194031-May-15 23:09
Member 1145194031-May-15 23:09 
QuestionCan't find dll's Pin
Member 1163348322-Apr-15 5:45
Member 1163348322-Apr-15 5:45 
Generalregarding uploading image Pin
bharatwaj vanamamalai17-Apr-15 1:10
bharatwaj vanamamalai17-Apr-15 1:10 
Generalregarding uploading image Pin
bharatwaj vanamamalai17-Apr-15 1:09
bharatwaj vanamamalai17-Apr-15 1:09 
QuestionCould not load file or assembly 'CkEditor' or one of its dependencies. Pin
kk20144-Jan-15 19:16
kk20144-Jan-15 19:16 
AnswerRe: Could not load file or assembly 'CkEditor' or one of its dependencies. Pin
bharatwaj vanamamalai17-Apr-15 3:03
bharatwaj vanamamalai17-Apr-15 3:03 
GeneralRe: Could not load file or assembly 'CkEditor' or one of its dependencies. Pin
Member 1163348322-Apr-15 5:47
Member 1163348322-Apr-15 5:47 
QuestionCKEditor page in flashing (flickering) Pin
kesav prakash13-Dec-14 1:07
kesav prakash13-Dec-14 1:07 
QuestionAutogrow? Pin
todavidhardy1-Jul-14 14:50
todavidhardy1-Jul-14 14:50 
Newshh Pin
Member 1038689914-Feb-14 4:10
Member 1038689914-Feb-14 4:10 
Questionlicensing Pin
Member 103320251-Nov-13 8:06
Member 103320251-Nov-13 8:06 
AnswerRe: licensing Pin
dpalash2-Nov-13 7:57
professionaldpalash2-Nov-13 7:57 
Questionhow to store the dynamic rich text data from CKEditor in ASP.Net Pin
Arsh Pareek2-Oct-13 2:54
Arsh Pareek2-Oct-13 2:54 
AnswerRe: how to store the dynamic rich text data from CKEditor in ASP.Net Pin
dpalash2-Oct-13 23:00
professionaldpalash2-Oct-13 23:00 
GeneralRe: how to store the dynamic rich text data from CKEditor in ASP.Net Pin
Arsh Pareek3-Oct-13 0:33
Arsh Pareek3-Oct-13 0:33 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.