Given that all controls in a WebForm are destroyed (by my understanding) at the end of each postback do you need to "unwire" any event handlers you may have wired up? (Assuming you want to stop handling the events and allow GC)

So for example:

public partial class WebForm1 : System.Web.UI.Page
{
    protected void Page_Load(object sender, EventArgs e)
    {
        //Do I need to remove this handler?
        btnSubmit.ServerClick += btnSubmit_ServerClick; 
    }
}
link|improve this question

feedback

3 Answers

up vote 3 down vote accepted

Unlikely. Your WebForm1 instance's lifetime ends just after the Unload event, if I recall correctly. It's not as though there is a continuing reference to your WebForm1 class after the page is served and cleanup is done.

link|improve this answer
feedback

No, you don't have to. They will be garbage collected.

link|improve this answer
feedback

I managed to make a Web Application (WebForm) once with dynamic controls, I had to "unwire" my events, else the page became slower and slower. the "old" pages that I thought the GC had taken care off, was still around. When I unwired the event in Page_Unload my application no longer kept raising the event for the non-existant pages.

This has only happened to me once though, and it was probably due to the dynamic nature of the application.

Just food for thought :)

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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