I downloaded the FCKeditor_2.3.zip and FCKeditor.Net_2.2.zip files from fckeditor.net and unzipped them. I then uploaded the the fckeditor folder to the admin folder of my website and uploaded the contents of the FCKeditor.Net_2.2.zip file to the admin/fckeditor folder of my website. I uploaded the bin folder from the FCKeditor.Net_2.2.zip to the admin folder of my website. I was sure to copy the FredCK.FCKeditorV2.dll file from the release folder and just put it in the bin folder. I then wrote a test page and got the following error: Could not load file or assembly 'FredCK.FCKeditorV2' or one of its dependencies. The system cannot find the file specified.
Here is the code from my test page:
<%@ Page ValidateRequest="false" Language="VB" AutoEventWireup="false" %>
<%@ Register TagPrefix="FCKeditorV2" Namespace="FredCK.FCKeditorV2" Assembly="FredCK.FCKeditorV2" %>
<script runat="server">
Sub Page_Load()
End Sub
Sub Page_Unload()
End Sub
</script>
<html> <head> <title>FCKeditor - Sample</title> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> </head> <body> <form runat="server"> <FCKeditorV2:FCKeditor id="FCKeditor1" BasePath="/testing/admin/FCKeditor/" runat="server"></FCKeditorV2:FCKeditor> <br> <input type="submit" value="Submit" runat="server"> </form> </body> </html>