3

我正在学习如何在 Visual Studio 10.0.40219.1 SP1Rel、.NET 4.0.30319 SP1Rel 的代码隐藏中使用 VB.NET 使用 Ajax Control Toolkit。我去过很多网站并尝试了很多代码,使用 AnimationExtender。工具包附带的示例可以完美运行,但在

http://localhost:1049/

这与我的“在浏览器中查看代码”网址不同:

http://localhost:4258/

当我将网址更改为我的网址时,我收到此错误:

Could not load file or assembly 'AjaxMin, Version=4.97.4951.28478, Culture=neutral, PublicKeyToken=21ef50ce11b5d80f' or one of its dependencies. The system cannot find the file specified.

安装说明中没有提到这一点。我无法运行我用来学习如何使用 AnimationExtender 的页面。我很茫然,我在谷歌或这里找不到这样的东西。

谢谢!

4

2 回答 2

2

Matty 建议检查示例项目让我回到我解压缩它的目录,然后检查文件 AjaxControlToolkit.Binary.NET40.zip,其中包含 AjaxMin.dll 文件。我让管理员将文件移动到 C:\Program Files\Microsoft Visual Studio 10.0\VB\Bin (我不知道该目录是否重要,它对我有用),然后在 VS 中添加 DLL 作为对项目的引用. 从那以后我得到的几个错误与 ajaxmin 无关。

于 2013-08-21T15:30:46.477 回答
2

我遇到了同样的问题,我必须将文件AjaxMin.dll从我提取AjaxControlToolkit.Binary.NET40.zip, 的位置复制到我的项目的 bin 文件夹中。即C:\Users\MyUserName\Documents\Visual Studio 2010\Projects\MyProject\MyProject\bin 重建了解决方案,这次工作正常..希望对您有所帮助:)

于 2013-11-24T08:11:35.077 回答