UpdatePanel in Repeater - Stack Overflow most recent 30 from stackoverflow.com 2009-11-29T21:23:55Z http://stackoverflow.com/feeds/question/583731 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/583731/updatepanel-in-repeater 1 UpdatePanel in Repeater azollman 2009-02-24T21:42:19Z 2009-03-09T02:00:54Z <p>I have a UserControl which contains voting buttons inside an UpdatePanel, and outside a Repeater, it works perfectly. In the repeater, clicking the button fires off the appropriate event. That event is supposed to update the text of a control within the User Control, and that update should be reflected when the UpdatePanel refreshes.</p> <p>If tried the UpdatePanel in UpdateMode Always and Conditional (firing the Update event after making the changes to the properties in the _Click method, and the same problem happens both ways.</p> <p>Is there something about how UpdatePanels behave in Repeaters that I'm missing?</p> <p>Thanks.</p> http://stackoverflow.com/questions/583731/updatepanel-in-repeater/583749#583749 0 Answer by Spencer Ruport for UpdatePanel in Repeater Spencer Ruport 2009-02-24T21:46:05Z 2009-02-24T21:46:05Z <p>Your repeater is building a table correct? The problem is most likely that an update panel generates a div tag and it's probably outside any TR and TD tags so the browser doesn't know what to do with it.</p> <p><a href="http://www.netortech.com/blog/?articleid=8" rel="nofollow">http://www.netortech.com/blog/?articleid=8</a></p> http://stackoverflow.com/questions/583731/updatepanel-in-repeater/583765#583765 1 Answer by Manu for UpdatePanel in Repeater Manu 2009-02-24T21:49:39Z 2009-02-24T21:49:39Z <p>The reason might have nothing to do with the update panel, but with the postback loosing track of your UserControl. Possibly assigning unique IDs to your user controls may help.</p>