Click here to Skip to main content
Licence CPOL
First Posted 20 Jul 2008
Views 98,920
Downloads 4,031
Bookmarked 53 times

Integrating FCKeditor in ASP.NET

By | 20 Jul 2008 | Article
Integrating FCKeditor in ASP.NET

Introduction

In Basic ASP.NET, FCKeditor can be easily integrated. Here is the link where I found that.

However, to integrate FCKeditor in ASP.NET MVC environment, we have to follow some tricky steps. Here I will show how to integrate using core JavaScript as well as using Jquery.

Using JavaScript

Step 1

Download the FCKeditor from here.

Step 2

Unzip the package and put in your project content directory. I like to make a directory Javascript under Content directory and put unzipped fckeditor here. I have also put fckeditorapi.js in Javascript folder. You can get more information on FCKeditor API here.

Step 3

I have added a MVC view file in Home folder and named it as Fck.aspx. To view this file, I included a method in HomeController, as follows:

/// <summary>
/// Show FCK Editor View Page
/// </summary>
public void Show()
{
    RenderView("Fck");
}  

Step 4

In Fck.aspx, include the fckeditor.js and fckeditorapi.js file:

<script type="text/javascript" src="../../Content/Javascript/fckeditor/fckeditor.js">
</script>
<script type="text/javascript" src="../../Content/Javascript/fckeditorapi.js"></script>

Include the following to replace textarea (named 'content') by FCKeditor. Here I have included InsertContent(), ShowContent() and ClearContent() methods to perform some extra actions:

<script type="text/javascript">
window.onload = function()
{
    var oFCKeditor = new FCKeditor( 'content' ) ;
    oFCKeditor.BasePath = "/Content/Javascript/fckeditor/" ;
    oFCKeditor.Height = 300;
    oFCKeditor.ReplaceTextarea() ;
}

function InsertContent()
{
    var oEditor = FCKeditorAPI.GetInstance('content') ;
    var sample = document.getElementById("sample").value;
    oEditor.InsertHtml(sample);
}

function ShowContent()
{
    var oEditor = FCKeditorAPI.GetInstance('content') ;
    alert(oEditor.GetHTML());
}

function ClearContent()
{
    var oEditor = FCKeditorAPI.GetInstance('content');
    oEditor.SetHTML("");
}
</script>

Here is the HTML content:

<div>
  <input id="sample" type="text" />
  <input id="cmdInsert" type="button" value="Insert Content" onclick="InsertContent()" />

  <input id="cmdClear" type="button" value="Clear Content" onclick="ClearContent()" />
  <br /> <br />
  <textarea id="content" cols="30" rows="10"></textarea>
  <br />
  <input id="cmdShow" type="button" value="Show Content" onclick="ShowContent()" />
</div> 

Step 5

Now build the application and run. Click the "FCK Editor" link and get the result.

Using JQuery

Step 1

Download jquery from here. I have put jquery-1.2.6.pack.js and jquery.FCKEditor.js in my "Javascript" folder.

Step 2

I have added a MVC view file in Home folder and named it as "FckJquery.aspx". To view this file, I included a method in HomeController, as follows:

/// <summary>
/// Show FCK Editor By JQuery
/// </summary>
public void View()
{
    RenderView("FckJquery");
}

Step 3

In FckJquery.aspx, include the jquery-1.2.6.pack.js, fckeditor.js and jquery.FCKEditor.js file:

<script type="text/javascript" src="../../Content/Javascript/jquery-1.2.6.pack.js">
</script>
<script type="text/javascript" src="../../Content/Javascript/fckeditor/fckeditor.js">
</script>
<script type="text/javascript" src="../../Content/Javascript/jquery.FCKEditor.js">
</script>

Include the following to replace textarea (named 'content') by FCKeditor. Here I have included InsertContent(), ShowContent() and ClearContent() methods to perform some extra actions.

<script type="text/javascript">
$(document).ready(function(){
    $.fck.config = {path: '/Content/Javascript/fckeditor/', height: 300 };
    $('textarea#content').fck();
});

function InsertContent()
{
    var sample = document.getElementById("sample").value;
    $.fck.insertHtml('fck1', sample);
}

function ShowContent()
{
    alert($.fck.content('fck1', ''));
}

function ClearContent()
{
    $.fck.clearHtml('fck1');
}
</script>

Here is the HTML content:

<div>
  <input id="sample" type="text" />
  <input id="cmdInsert" type="button" value="Insert Content" onclick="InsertContent()" />

  <input id="cmdClear" type="button" value="Clear Content" onclick="ClearContent()" />
  <br /> <br />
  <textarea id="content" cols="30" rows="10"></textarea>
  <br />
  <input id="cmdShow" type="button" value="Show Content" onclick="ShowContent()" />
</div>

Step 4

In jquery.FCKEditor.js file, I have included two functions. Function insertHtml() inserts HTML content into fckeditor and clearHtml() clears the content.

// insert Html Content
insertHtml: function(i, v) {
try{
var x = FCKeditorAPI.GetInstance(i);

if(v) x.InsertHtml(v);
else return '';
}
catch(e) { return ''; };
},

// clear Html Content
clearHtml: function(i) {
try{
var x = FCKeditorAPI.GetInstance(i);

x.SetHTML('');
}
catch(e) { return ''; };
},

Step 5

Now build the application and run. Click the "FCK Editor By JQuery" link and get the result. Enjoy it!

References

Conclusion

Next I will try to give some demonstration on how to build plugins in FCKeditor. Till then, bye.

History

  • 20th July, 2008: Initial post 

License

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

About the Author

Jahedur Rahman Chowdhury

Software Developer (Senior)
Brain Station-23
Bangladesh Bangladesh

Member

Senior Software Engineer in Brain Station-23, Bangladesh.

Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
You must Sign In to use this message board. (secure sign-in)
 
Search this forum  
 FAQ
    Noise  Layout  Per page   
  Refresh
QuestionExcellent! PinmemberSunasara Imdadhusen22:03 22 Sep '11  
GeneralCould not load type 'FredCK.FCKeditorV2.FileBrowser.Config'. Pinmembersajjad44444:37 15 Oct '09  
GeneralEntery LEVEL ??!!!!!!!!!!!! PinmemberAmeen Abudbush0:46 30 Oct '08  
Generalvey nice :) Pinmemberde1uxe9:55 6 Oct '08  
But i can't change toolbar i made an new toolbar in fckconfig.js and i changed the toolbar in jquery.fckeditor.js - but nothing happens, i still have the enormous default toolbar :S
 
any help on that one?
GeneralRe: vey nice :) PinmemberMohammad Jahedur Rahman20:35 6 Oct '08  
GeneralNice one PinmemberAshrafur Rahaman3:06 21 Jul '08  
General.NET web control PinmvpSacha Barber23:42 20 Jul '08  
GeneralRe: .NET web control PinmemberSimonRigby23:31 28 Jul '08  
GeneralRe: .NET web control PinmvpSacha Barber1:43 29 Jul '08  
Questionhow to apply char count? Pinmembers a n t o s h23:15 20 Jul '08  
AnswerRe: how to apply char count? PinmemberMohammad Jahedur Rahman23:54 20 Jul '08  
GeneralRe: how to apply char count? Pinmembers a n t o s h19:59 21 Jul '08  
AnswerRe: how to apply char count? PinmemberMohammad Jahedur Rahman21:19 21 Jul '08  
GeneralThe Editor PinmemberSpeednet_18:01 20 Jul '08  
GeneralRe: The Editor Pinmembernsimeonov2:06 22 Jul '08  
GeneralRe: The Editor PinmemberSpeednet_3:32 22 Jul '08  
GeneralRe: The Editor PinmemberSimonRigby9:20 28 Jul '08  
GeneralRe: The Editor PinmemberSpeednet_18:05 28 Jul '08  
GeneralRe: The Editor PinmemberSimonRigby23:20 28 Jul '08  

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

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

Permalink | Advertise | Privacy | Mobile
Web02 | 2.5.120604.1 | Last Updated 20 Jul 2008
Article Copyright 2008 by Jahedur Rahman Chowdhury
Everything else Copyright © CodeProject, 1999-2012
Terms of Use
Layout: fixed | fluid