.NET 2.0 中的 Ajax 扩展?

发布于 2024-08-12 14:55:42 字数 138 浏览 5 评论 0原文

问题:如果我想在 Visual Studio 2005 中使用 ajax 扩展,我必须下载 ajax 扩展。

现在这是我的问题: 我是否只需要在开发时执行此操作,或者如果我让我的项目使用 ajax 扩展,我是否还需要在生产服务器上安装某些内容?

Question: If I want to use ajax extension with Visual Studio 2005, i have to download ajax extensions.

Now here's my question:
Do I need to do this only for development, or do I also need to install something on the production server if I make my project use ajax extensions?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

风向决定发型 2024-08-19 14:55:42

您还需要将其安装在生产服务器上。这会将适当的 dll 放入 GAC 中。

您可以将这些 dll 包含在本地 bin 中,并将它们与您的应用程序一起部署。最简单的方法是将 AJAX 扩展 dll 的引用标记为 CopyLocal = true。这应该作为 Visual Studio 中引用的属性提供。

You need to install it on the production server as well. This will place the appropriate dll's in the GAC.

You may be able to include those dll's in you local bin, and deploy those with your application. The easiest way to do this is to mark the references to the AJAX Extensions dll's as CopyLocal = true. This should be available as a property of the reference in Visual Studio.

赠我空喜 2024-08-19 14:55:42

您必须在部署到的服务器上安装 ajax dll,否则您将收到错误消息,指出无法加载该库。

理想情况下,AjaxControlToolkit.dll 文件应位于服务器的 bin 文件夹中,否则您会收到错误,例如:

无法加载文件或程序集 'AjaxControlToolkit, Version=3.0.30512.17815, Culture=neutral, PublicKeyToken=28f31c0f84b6d53e' 或其中之一它的依赖项。

You must install the ajax dll on the server you deploy to, or you will get an error saying it could not load the library.

The AjaxControlToolkit.dll file should ideally be in the bin folder of your server, otherwise you get an error such as:

Could not load file or assembly 'AjaxControlToolkit, Version=3.0.30512.17815, Culture=neutral, PublicKeyToken=28f31c0f84b6d53e' or one of its dependencies.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文