从何处获取以及如何安装(或迁移)ASP.NET server缺少的程序集?

从何处获取以及如何安装(或迁移)ASP.NET server缺少的程序集?,asp.net,assemblies,server-migration,Asp.net,Assemblies,Server Migration,我正在将web应用迁移到新的托管服务器,但当我尝试访问它们以在新服务器上进行测试时,我会收到所有未找到的程序集错误,如: Configuration Error Description: An error occurred during the processing of a configuration file required to service this request. Please review the specific error details below and modify

我正在将web应用迁移到新的托管服务器,但当我尝试访问它们以在新服务器上进行测试时,我会收到所有未找到的程序集错误,如:

Configuration Error
Description: An error occurred during the processing of a configuration file required to service this request. Please review the specific error details below and modify your configuration file appropriately.

Parser Error Message: Could not load file or assembly 'System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35' or one of its dependencies. The system cannot find the file specified.

Source Error:

Line 28:        <compilation debug="false">
Line 29:            <assemblies>
Line 30:                <add assembly="System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"/>
Line 31:                <add assembly="System.Design, Version=2.0.0.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A"/>
Line 32:                <add assembly="System.Web.Extensions.Design, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/>
配置错误
描述:处理服务此请求所需的配置文件时出错。请查看下面的特定错误详细信息,并适当修改配置文件。
分析器错误消息:无法加载文件或程序集“System.Web.Extensions,Version=1.0.61025.0,Culture=neutral,PublicKeyToken=31bf3856ad364e35”或其依赖项之一。系统找不到指定的文件。
源错误:
第28行:
第29行:
第30行:
第31行:
第32行:

有人知道您在哪里找到这些工具或如何将它们迁移吗?

这是ASP.Net AJAX工具包的一部分。

您必须在服务器上安装ASP.AJAX工具包,或者在项目中包含程序集。并告诉您如何将库包含为DLL或JS。

服务器上是否安装了AJAX?当前版本中包含了AJAX,但以前的版本必须单独安装在web服务器上。您必须在服务器上安装ASP.AJAX工具包,或者在项目中包含程序集。这里,这里将告诉你如何将库作为DLL或JS包含。将这些链接作为他们自己的答案发布,你将获得至少一个投票权,stingy。顺便说一句:我的一般策略是先发布一个“快速”答案,然后在第一篇文章出现后用参考链接或详细信息“充实”。在这种情况下,我要找到实际的下载位置比我想象的要困难得多。