dispose()

  • Thread starter Thread starter Sam
  • Start date Start date
S

Sam

how to dispose connection pooling when aspx is discontinued?

In VB, the syntax is unload but how about aspx ?
 
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?
 
Back
Top