UpdatePanel in Repeater - Stack Overflow most recent 30 from stackoverflow.com2009-11-29T21:23:55Zhttp://stackoverflow.com/feeds/question/583731http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/583731/updatepanel-in-repeater1UpdatePanel in Repeaterazollman2009-02-24T21:42:19Z2009-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#5837490Answer by Spencer Ruport for UpdatePanel in RepeaterSpencer Ruport2009-02-24T21:46:05Z2009-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#5837651Answer by Manu for UpdatePanel in RepeaterManu2009-02-24T21:49:39Z2009-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>