Click here to Skip to main content
15,879,535 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.6K   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

 
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 
SuggestionBetter way to use CKEditor with ASP.NET Pin
Peter Huber SG8-Jul-13 16:47
mvaPeter Huber SG8-Jul-13 16:47 
GeneralRe: Better way to use CKEditor with ASP.NET Pin
dpalash8-Jul-13 21:53
professionaldpalash8-Jul-13 21:53 
GeneralRe: Better way to use CKEditor with ASP.NET Pin
Rahul Dihora RV4-Aug-14 3:09
Rahul Dihora RV4-Aug-14 3:09 
GeneralRe: Better way to use CKEditor with ASP.NET Pin
Fandango6825-Oct-16 19:34
Fandango6825-Oct-16 19:34 
Questionhow could i modify it Pin
equeramullah bughio11-Apr-13 21:25
equeramullah bughio11-Apr-13 21:25 
QuestionPublishing Asp .net File which contain CKEditor Pin
itsureshuk9-Apr-13 0:34
itsureshuk9-Apr-13 0:34 
Hi Frnd,
I am using CKEditor in my Project.While developing its worked fine,but after publish the website ---by right click solution explorer published website...After that its not working..
For example your file also i published.

I downloaded this CKEditor and published-after publish and run ,its not show ckeditor
QuestionImage Up Pin
Ahmad Abd-Elghany7-Mar-13 17:32
Ahmad Abd-Elghany7-Mar-13 17:32 
AnswerRe: Image Up Pin
dpalash8-Apr-13 4:26
professionaldpalash8-Apr-13 4:26 

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.