How do I clean the cache of my project of visual studio 2010?

1

I have a problem and I really do not know what is due and I think it is due to the cache that can be filled in my project, but I do not know how to delete the cache of my project in .net.

Since I am currently making very, very basic changes to my code, like deleting important methods that should make the application stop working, but I run the application and everything continues to work and I do this because no change is made by me. there is a .ashx that is done in a strange way since the first lines of code are executed vertically and after the third one they are executed up and down in a random way, that .ashx is called by an ajax call and it is not within any control structure like the FOR or the While.

    
asked by David 13.04.2017 в 18:40
source

1 answer

1

1.- If you try it in the browser, you should clean the browser cache (ctr + shift + delete)

2.- You must clean solution:

3.- In case you continue with the problem, you should delete the temporary files: C: \ WINDOWS \ Microsoft.NET \ Framework \ v2.0.50727 \ Temporary ASP.NET Files

Regarding the latter, point 3 can be the Framework or Framework64 folder, depending on the bit of your computer.

link

link

    
answered by 01.06.2017 / 06:12
source