Could not load file or assembly “Microsoft.Web.Extensions”

前端 未结 3 1592
遥遥无期
遥遥无期 2021-02-13 03:42

I\'ve inherited an asp.net 3.5 solution and I\'m having trouble getting it working. I keep receiving the error:

Could not load file or assembly \'Microsof

3条回答
  •  感情败类
    2021-02-13 03:59

    As it turns out, I had been given an incorrect web.config by the previous developers. Putting the new one in allowed me to compile and build the solution.

    Once deployed to the server, I had installed the AJAX for ASP.NET 2.0, but still received errors referencing microsoft.web.extensions etc.

    The solution lie in the versioning.

    The whole application seems to be built on top of the AJAX for ASP.NET Beta 2 binary. After removing the 2.0 and re-installing the beta 2 MSI, everything fired into action.

    Thanks for the pointers everyone.

提交回复
热议问题