Click here to Skip to main content
15,879,535 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
I am using EnterpriseLibrary for ExceptionHandling the errors in ASP.Net Web Application Project. For this I am getting this error as mentioned above. I thought the dll file is missing but it is installed.

What I have tried:

I uninstalled the dll file and reagian installed the dll file in the same project but getting the same error. Can anyone help me out of this issue.
Posted
Updated 11-Jul-18 18:49pm

It's not saying "the DLL has a problem" it's saying "there is a problem which shows up in the DLL which the code that calls it isn't dealing with" - and that's normally because your code has done something wrong when it called it. Use the debugger to find out where the error is occuring and look at the call stack to find out where in your code it is called from.
Then put a breakpoint on that line, and add a try...catch block round it so you can look at the exception itself. Run your code, and when it hits the breakpoint look at exactly what you are doing with the code, and what parameters you pass it. Then step the line, and you should be able to look at the exception content to find out what exception messages you have, and that should help you work out what exactly the problem is.

Sorry, but we can't do any of that for you!
 
Share this answer
 
Comments
Member 8583441 11-Jul-18 7:21am    
I have done all this previously.... But no use
Member 8583441 11-Jul-18 7:21am    
I have done all this previously.... But no use
OriginalGriff 11-Jul-18 7:24am    
If you have done all this, then you should have exception details and the line of code that causes the exception. So what are they?
I found the problem that is only one thing I have written the name wrongly. Later on I have changed the name and finally it is working as expected. Thanks a lot
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900