I'm trying to debug some resource leaks - oracle connections specifically.
On my local machine, as I step through the Page_Load(), I can see the connections created in the db by monitoring v$session.
As soon as I step out of Page_Load, all the connections are closed.
Same code running on the dev server (W3k, IIS6) does NOT release the resources - connections according to the db are still there.
I've tried this with and without connection pooling enabled, and it's the same - locally it's fine, on the server it leaks.
I have verified that the .net framework is the same in both places & the code is the same as well. What am I missing?