In particular, I am interested in knowing how ASP.NET WebForms/AJAX prevents memory leaks for UpdatePanel PostBacks (normal PostBacks can be ignored, I think, because of a full-DOM refresh): when an UpdatePanel "renders" it sends back the new HTML content and the DOM is updated replacing old controls with new controls.
I have read some articles on implementing a AJAX-client controls and most mention a dispose method but seem to provide minimal details into the actual operation of the lifecycle management of client controls.
However, I am confused as to how this "interface" is supposed to work: how does a control that did exist but does not exist any longer on the UpdatePanel PostBack receive the dispose call?
Is it called for every UpdatePanel PostBack? If not, what triggers it? How is the "reference" to the existing control (created with $create?) stored/accessed? What happens if a different control with the same name (client ID) is added?
Additionally, is there a good way to hook into the dispose of another control?