I need to make a few changes in an C# ASP.Net web site.
I know C# and .net 3.5 but with this I am not very familiar.
When I run this program I get this error:
Cannot load type FredCK.FCKeditorV2.Uploader
at the line:
<%@ Page language="c#" Trace="false" Inherits="FredCK.FCKeditorV2.Uploader" AutoEventWireup="false" %>
I tried to put the FredCK.FCKeditorV2.dll in the Bin folder but nothing changed.
What could I do to solve this?
Make sure that the assembly containing this class is referenced in your project and added to the
<assemblies>section in your web.config (don’t forget to adjust the version and PubliKeyToken to match those of your assembly):