Reputation: 6605
how can i make sure i dispose of ALL my variables and sessions when i close the application?
i already have session.abandon(), but does it still keep all the other objects stored somewhere in the memory?
i've noticed that my w3wp.exe process keeps going up as i am testing my application. what is a good way to keep mem usage under control?
Upvotes: 0
Views: 1762
Reputation: 161773
When the process exits, all the memory it was using goes away. You don't have to worry about it.
Upvotes: 1