Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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?

share|improve this question

1 Answer

If you have got answer to your question then share it. I have similar question.

share|improve this answer
This should be a comment on my main post. In any case, I have no idea how it works, but it does work reliably if the control implements from UI.Control (e.g. My.Klass.registerClass('My.Klass', Sys.UI.Control);). This of course requires that there is an HTML element with the corresponding ID passed (e.g. new ScriptControlDescriptor("My.Class", ClientID);), where ClientID refers to the ID of the outer div or whatever element is appropriate, in the descriptor. Implementing the client-side object from Sys.UI.Component will not work. I have no idea what happens if ClientIDs change. – user166390 Sep 10 '12 at 21:57
If you have a question, create an SO post for it :) – user166390 Sep 10 '12 at 22:00

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.