In my webconfig it has
<add key="DalManagerType" value="EyeFramesCatalog.DalEF.DalManager,EyeFramesCatalog.DalEF" />
The Type.GetType not able to find exact type and returns null.
How to solve this issue?
First make sure that the assembly EyeFramesCatalog.DalEF.dll exists in your bin folder.
If it is present then verify that the namespace and name is correct.
If in doubt use ILSpy (or any other decompiler) to inspect the assembly in your bin-folder to make sure the actual class is inside the assembly.
Copyright (c) Marimer LLC