Any help please?
I have only one library and it is driving me crazy. this is the error that I receive. I am not using any other dependancies.
Could n
If you are using the code Page.Load("control_path..."). make sure that the actual ascx file you load does not have any directives that include the assembly from your exception message
<%@ Register Tagprefix="SharePoint" Namespace="Microsoft.SharePoint.WebControls" Assembly="Microsoft.SharePoint, Version=14.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" %>
Assuming that you have access to SharePoint server, try the following. Some random thoughts and no specific order.
Are you developing your SharePoint project (do you mean web part?) using visual studio? Are you referencing it in your SharePoint project? You need to give us more details on your development environment to be able to pinpoint the problem.
for guys still looking into this issue one thing u need to know is there are different GACutils out there , so u need to make sure that ur using correct GACUTIL to deploy the DLL to correct GAC
for eg: if my dll was complied in 3.5 .net framework and my OS version was 64 bit windows it would be in below location
C:\Program Files (x86)\Microsoft SDKs\Windows\v7.0A\Bin\x64
Struggled for 4 stupid days to figure this out