What is the best practice to dispose IDisposable members of an ASP.net page?
Should I, ...
- use the
Page_Unload(object sender, EventArgs e)event - override the
void Dispose()method of theControlclass - something else ...
??
|
|
What is the best practice to dispose Should I, ...
??
|
||
|
|
|
|
Ideally there shouldn't really be any. In an ASP.NET page you should really use the |
||
|
|
|
If you absolutely have to have IDisposable objects as members of the page then I would go with during the Unload phase: |
||
|
|