S Sam Mar 10, 2005 #1 how to dispose connection pooling when aspx is discontinued? In VB, the syntax is unload but how about aspx ?
how to dispose connection pooling when aspx is discontinued? In VB, the syntax is unload but how about aspx ?
M Miha Markic [MVP C#] Mar 10, 2005 #2 Hmm, you have to dispose the connection as soon as you've finished using it, example: open connection load data close connection. You don't need an unload event. Does this answer your question?
Hmm, you have to dispose the connection as soon as you've finished using it, example: open connection load data close connection. You don't need an unload event. Does this answer your question?
S Sahil Malik Mar 10, 2005 #3 You can't dispose "connection pooling". You can dispose a connection object however, which returns it back to the pool. What are you trying to acheive? - Sahil Malik http://codebetter.com/blogs/sahil.malik/
You can't dispose "connection pooling". You can dispose a connection object however, which returns it back to the pool. What are you trying to acheive? - Sahil Malik http://codebetter.com/blogs/sahil.malik/