I solved my problem and since I found many has the same problem, I write the solution hope it could be useful for others:
1- Download the latest version of FCKeditor.Net from:
http://sourceforge.net/project/showfiles.php?group_id=75348&package_id=137125
2- Download the latest version of fckEditor from:
http://sourceforge.net/project/downloading.php?group_id=75348&filename=FCKeditor_2.6.2.zip
3- Copy the uncompressed package of FCKeditor in the root of your project in ‘fckeditor’ folder.
4- Add FredCK.FCKeditorV2.dll as reference to your web.
5- Add this line for registering assembely :
<%@ Register Assembly="FredCK.FCKeditorV2" Namespace="FredCK.FCKeditorV2" TagPrefix="FCKeditorV2" %>
6- Add control tag to your page:
| <FCKeditorV2:FCKeditor ID="ContentFreeTextBox" runat="server">
</FCKeditorV2:FCKeditor> |
7- Add this line to your web.config:
<appSettings>
<add key="FCKeditor:BasePath" value="~/fckeditor/" />
</appSettings>
Or
Set the BasePath of the control on your page:
BasePath="~/fckeditor/"
That’s it you won’t get the page cannot be found 404 error.