0

I have an ASP.NET application (presentation layer) that references a VB.NET class library (Business Logic Layer), which references another VB.NET class library (Data Logic Layer).

When I step through the code in the code behind files I am now seeing an error:

Could not load type 'DataLogicLayer.classname' from assembly 'DataLogicLayer, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'.":"DataLogicLayer.classname"}System.Exception

ClassName is from the Data Logic Layer. I am not sure how to troubleshoort this error.

(I have checked that the assemblies appear in the BIN folders.)

w0051977
  • 15,099
  • 32
  • 152
  • 329

1 Answers1

0

I had a reference to an old assembly in the web.config of the web application. Removing the assembly reference resolved the problem.

w0051977
  • 15,099
  • 32
  • 152
  • 329