vote up 2 vote down star

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 the Control class
  • something else ...

??

flag

69% accept rate

2 Answers

vote up 3 vote down check

Ideally there shouldn't really be any. In an ASP.NET page you should really use the using(...) { ... } construct, which disposes objects immediately. If you have members of your page that need disposing, that's probably an indication of bad design, so consider putting those objects in things like session state or the cache instead.

link|flag
I'm not sure I understand your assertion that holding a disposable member is an indication of bad design? – AnthonyWJones Jul 28 at 14:27
vote up 2 vote down

If you absolutely have to have IDisposable objects as members of the page then I would go with during the Unload phase:

http://msdn.microsoft.com/en-us/library/ms178472.aspx

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.