0

I replaced my Business Login (.dll) and .aspx page three or four times but I am getting the same error. What is the cause of this problem?

adrianbanks
  • 81,306
  • 22
  • 176
  • 206
Dgan
  • 10,077
  • 1
  • 29
  • 51
  • see similar Q: http://stackoverflow.com/questions/124841/could-not-load-type-from-assembly-error – Majid Dec 30 '13 at 19:32
  • How did you replace your Business Login dll and aspx page? Did you just copy and paste to override or recompile and redeploy the whole thing? – Ray Cheng Dec 30 '13 at 21:26

1 Answers1

0

There are 2 options here:

  1. The new dll is in your bin directory and your web.config should not include, version, culture and PublicKeyToken details. or

  2. Your new dll is the GAC (C:\Windows\Assembly) and your web.config should contain at least a valid PublicKeyToken.

Dalorzo
  • 19,834
  • 7
  • 55
  • 102