1

i have installed AJAXcontrolsToolkit with my visual studio and placed "Combobox" Ajaxcontrol controls in my webpage . when i am compiling the code getting below error

"Could not load file or assembly 'AjaxControlToolkit' or one of its dependencies. The system cannot find the file specified"

Jeyavel
  • 2,774
  • 9
  • 32
  • 45
  • i have noticed when i register AJAX controls assembly need to give the assembly name,version,culture,publickeytoken ex: – Jeyavel Jul 29 '10 at 12:29

4 Answers4

1

I use File-Zilla to upload my files to the web server. I found that my reference files (AjaxControlToolkit.dll and AjaxControlToolkit.pdb) in the bin folder on the web server had not been completely transferred. so I deleted them and I uploaded new ones from the development site directly into the bin folder of the web server.

And Voila! Everything just fell into place like magic.

David
  • 11
  • 1
1

Have you added the required assembly to the references of your project?

Sachin Shanbhag
  • 50,935
  • 9
  • 84
  • 103
1

The above post was very useful

<%@ Register Assembly="AjaxControlToolkit" Namespace="AjaxControlToolkit" TagPrefix="asp" %>

I was using the above code , i replaced the code as below and now working

<%@ Register Assembly="AjaxControlToolkit, Version=3.5.40412.0, Culture=neutral, PublicKeyToken=****" Namespace="AjaxControlToolkit" TagPrefix="asp" %>

Thanks for your post

LPL
  • 16,007
  • 6
  • 43
  • 87
GRam
  • 11
  • 1
0

The application not load because it not find or not is compatible, try to do download from at nuget Install-Package AjaxControlToolkit -version x.x, or in site.