I had trouble with this error for a few days so I thought I'd post the solution here to help others like me (newbie twits).
When you try to build an ASP.Net project with FCKEditor a build error like this may occur:
Could not load type 'FredCK.FCKeditorV2.FileBrowser.Config'
This is because a DLL is missing from your /bin/ folder. To fix it, it's necessary to create a reference in your project to the file called FredCK.FCKeditorV2.dll. You have two options to do that:
I hope this helps anyone else as thick as I am.
Good programming!
When you try to build an ASP.Net project with FCKEditor a build error like this may occur:
Could not load type 'FredCK.FCKeditorV2.FileBrowser.Config'
This is because a DLL is missing from your /bin/ folder. To fix it, it's necessary to create a reference in your project to the file called FredCK.FCKeditorV2.dll. You have two options to do that:
1. Manually copy the FredCK.FCKeditorV2.dll file to the "bin" directory of your web site. Then build your website.
2. Right-click "References" in your Visual Studio.NET project in the "Solution Explorer". Use "Browse" to select the FredCK.FCKeditorV2.dll file from the directory you have saved it in.
I hope this helps anyone else as thick as I am.
Good programming!