I have a large memory c # .NET application. Using the ant memory profiler, I see that there are several versions of the same user controls in memory, and the garbage collector does not collect them. There is output caching in web forms, but there is no output caching in real user controls.
Is there a reason why user controls are not deleted?
How can I determine why and what keeps them from being disposed of by the garbage collector?
source
share