User Control with multiple events has asynchronous postback on event not specified in an UpdatePanel - Stack Overflow most recent 30 from stackoverflow.com 2009-12-23T02:27:25Z http://stackoverflow.com/feeds/question/864419 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/864419/user-control-with-multiple-events-has-asynchronous-postback-on-event-not-specifie 0 User Control with multiple events has asynchronous postback on event not specified in an UpdatePanel Doug 2009-05-14T16:39:31Z 2009-05-14T16:39:31Z <p>I have a user control which has two events. A button Click and a drop down list SelectedIndexChanged. Also on the same page there is an UpdatePanel, which has an AsyncPostBackTrigger that is conditional on only one of these events; however, an asynchronous postback occurs when either of the events in the user control occur. Is there a way to have the button Click postback and the drop down list SelectedIndexChanged asynchronously postback?</p> <p>MyUserControl has:</p> <pre><code>public event EventHandler TicketSearch; public event EventHandler CountryChanged; </code></pre> <p>aspx page has:</p> <pre><code>&lt;uc1:MyUserControl ID="uc1" runat="server" /&gt; &lt;asp:UpdatePanel ID="up" runat="server" ChildrenAsTriggers="false" UpdateMode="Conditional"&gt; &lt;ContentTemplate&gt; &lt;asp:Label ID="lbl" runat="server" /&gt; &lt;/ContentTemplate&gt; &lt;Triggers&gt; &lt;asp:AsyncPostBackTrigger ControlID="uc1" EventName="CountryChanged" /&gt; &lt;/Triggers&gt; &lt;/asp:UpdatePanel&gt; </code></pre>