1

enter image description here

As the image shows, I have been not able to run the application in localhost.

Everything seems fine.

What I've tried:

  • Deleting/readding the references and make sure they are copied into the bin folder.
  • Make sure that everything is running .NET 4.0
  • I also tried this and this
  • I also tried creating another Application Pool running V4.0
  • And Convert to Application

What else can I do?

Thank you

Update:

I registered the file using:

<add assembly="AjaxControlToolkit, Version=4.1.60919, Culture=neutral, PublicKeyToken=28f01b0e84b6d53e" />

But, it's still complaining that the file is not there! It is there!

Community
  • 1
  • 1
Luis Lavieri
  • 3,689
  • 5
  • 32
  • 60

2 Answers2

1

If it works in your local and not working in server means there is a chance of environment issue like 32bit/64 bit.

So just check the application pool advanced settings.

Enable 32-Bit applications make it to true and try once.

enter image description here

cheers, vijay

1

Well, after trying a lot, I noticed that there was a problem with the Ouput path of the application. I just put everything in bin\

That magically fixed everything. I still don't know how because the .dll was in the correct position before.

All the other stuff that I tried was completely useless.

Thanks to everyone who helped.

Luis Lavieri
  • 3,689
  • 5
  • 32
  • 60