User Control with multiple events has asynchronous postback on event not specified in an UpdatePanel - Stack Overflow most recent 30 from stackoverflow.com2009-12-23T02:27:25Zhttp://stackoverflow.com/feeds/question/864419http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/864419/user-control-with-multiple-events-has-asynchronous-postback-on-event-not-specifie0User Control with multiple events has asynchronous postback on event not specified in an UpdatePanelDoug2009-05-14T16:39:31Z2009-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><uc1:MyUserControl ID="uc1" runat="server" />
<asp:UpdatePanel ID="up" runat="server" ChildrenAsTriggers="false" UpdateMode="Conditional">
<ContentTemplate>
<asp:Label ID="lbl" runat="server" />
</ContentTemplate>
<Triggers>
<asp:AsyncPostBackTrigger ControlID="uc1" EventName="CountryChanged" />
</Triggers>
</asp:UpdatePanel>
</code></pre>