Forum

The forum is a free service supported by community members. Please consider opening a support ticket if you need timely help.

PrevPrev Go to previous topic
NextNext Go to next topic
Last Post 19 Jan 2011 07:42 PM by  Steve L
ModuleLoadException: Could not load file or assembly 'AjaxControlToolkit'
 0 Replies
Sort:
You are not authorized to post a reply.
Author Messages


Veteran Member


Posts:2957
Veteran Member


--
19 Jan 2011 07:42 PM
    DNN running a different version of Microsoft AjaxControlToolkit may encounter the following error message:

    "DotNetNuke.Services.Exceptions.ModuleLoadException: Could not load file or assembly 'AjaxControlToolkit, Version=1.0.20229.42809..."

    This is not a bug, but rather a mismatch in AjaxControlToolkit version needed by Revindex Storefront. Currently, Revindex Storefront requires Ajax Control Toolkit v3.0.30930.

    To fix it, simply modify Web.config to tell the ASP.NET system to use the newer version of the dll. Replace newVersion value with the actual version of the dll in your \bin.

    <dependentAssembly>
    <assemblyIdentity name="AjaxControlToolkit" publicKeyToken="28f01b0e84b6d53e" />
    <bindingRedirect oldVersion="1.0.20229.42809" newVersion="3.0.30930.28736" />
    </dependentAssembly>
    0
    You are not authorized to post a reply.