I have Installed umbraco and replaced the Web.config with the one with 3.5 support (that i found on codeplex), After that i have created a WebUserControl that has a assambly reference like this: <%@ Register Assembly="AjaxControlToolkit" Namespace="AjaxControlToolkit" TagPrefix="asp" %>
When i try to add the .ascx file to a umbraco page (as a macro), it gives me this error: Error creating usercontrol (/usercontrols/ManageHours.ascx) Could not load file or assembly 'AjaxControlToolkit, Version=3.5.40412.0, Culture=neutral, PublicKeyToken=28f01b0e84b6d53e' or one of its dependencies. The located assembly's manifest definition does not match the assembly reference. (Exception from HRESULT: 0x80131040) at System.Web.Compilation.AssemblyBuilder.AddBuildProvider(BuildProvider buildProvider)
Anyone have a suggestion on how to debug/solve this ?
Also, for the record Umbraco 4.1 will not be shipping with the AjaxControlToolkit. We have no need for it in the core, it's many MB which we can do without and it also means that it's easier for developers to manage the version they want to use.
You should be able to use assembly binding to redirect the version of the assembly.
Unable to use Toolkit 3.5
Hello
I have Installed umbraco and replaced the Web.config with the one with 3.5 support (that i found on codeplex), After that i have created a WebUserControl that has a assambly reference like this: <%@ Register Assembly="AjaxControlToolkit" Namespace="AjaxControlToolkit" TagPrefix="asp" %>
When i try to add the .ascx file to a umbraco page (as a macro), it gives me this error:
Error creating usercontrol (/usercontrols/ManageHours.ascx)
Could not load file or assembly 'AjaxControlToolkit, Version=3.5.40412.0, Culture=neutral, PublicKeyToken=28f01b0e84b6d53e' or one of its dependencies. The located assembly's manifest definition does not match the assembly reference. (Exception from HRESULT: 0x80131040)
at System.Web.Compilation.AssemblyBuilder.AddBuildProvider(BuildProvider buildProvider)
Anyone have a suggestion on how to debug/solve this ?
You an use my project for this: http://our.umbraco.org/projects/ajaxcontroltoolkit-30930-for-umbraco
Also, for the record Umbraco 4.1 will not be shipping with the AjaxControlToolkit. We have no need for it in the core, it's many MB which we can do without and it also means that it's easier for developers to manage the version they want to use.
You should be able to use assembly binding to redirect the version of the assembly.
@slace
That's great news btw :-D
is working on a reply...