views:

56

answers:

1

Hi

I have a ClassLibrary in my ASP.NET Web Application solution , Recently when i do some changes in that ClassLibrary and rebuilt that , That doesn't affect the solution . While debuging and tracing instead of going into method of that ClassLibrary , i face "Disassembly" page .

I delete Temporary ASP.NET File's folder and Removed the class library from the solution and i added again several times ,But No difference

could you help me at this please ?

+1  A: 

The reason is that your web application is using the DLL that's in the bin folder instead of the class library code that is in your solution. To fix this go to your bin folder of your web application and delete the dll that is the class library and then add back to the solution your class library and make the reference to the library from your web application and you should be all set.

Avitus
@Avitus Thank you , But I "Add Referenced" and i don't directly use Dll , I did what you said several times , But still no difference
Mostafa