Using FCKEditor in ASP.NET 3.5
Posted by Johan Cyprich on 16 Apr 2010 | Tagged as: Programming
FCKEditor is a text editor that you can use in a web page. It has many more options than the text input boxes in HTML. This is a WYSIWYG editor and resembles desktop applications like Microsoft Word.
It supports multiple languages, but if you want to use it in an ASP.NET site, the ASP.NET control for it is required. The problem here is that the documentation doesn’t fully explain how to use it in an ASP.NET 3.5 page.
Setting Up FCKEditor
You need to download the FCKEditor code, currently at version 2.6.6 and then the ASP.NET control to work with it. Open the ASP.NET page and place the following code below the <% Page Language … %> section to register the control:
<%@ Register Assembly="FredCK.FCKeditorV2" Namespace="FredCK.FCKeditorV2" TagPrefix="FCKeditorV2" %>
To display an FCKEditor text box, place the following on the page:
<FCKeditorV2:FCKeditor ID="FCKeditor1" BasePath="~/fckeditor/" runat="server" Height="400" Width="800"></FCKeditorV2:FCKeditor>
The following control should then appear on your page. There are many options to customize the editor which depends on the application that its being used in.

You can download FCKEditor at http://ckeditor.com/.
| Related posts: | |
|
|
Share this post:
Follow Me:
Did you find this post interesting and useful? You can keep up to date on this blog by subscribing to my RSS feed, or you can have new posts sent to you by e-mail. You can also follow me on Twitter.
1 Comment »
Tweet This Post!
















Loading...
on 16 Apr 2010 at 6:45 pm 1.Tweets that mention Using FCKEditor in ASP.NET 3.5 | cyprich.com -- Topsy.com said …
[...] This post was mentioned on Twitter by Johan Cyprich. Johan Cyprich said: New blog post: Using FCKEditor in ASP.NET 3.5. http://cyprich.com/?p=633 [...]