3
I have a question. Is it possible to fire event only on updatePanel conditional while it is inside another that is not conditional? Follow the example:
<asp:UpdatePanel runat="server" ID="upPagina">
<ContentTemplate>
<asp:UpdatePanel ID="updatePanelGridView" runat="server" UpdateMode="Conditional">
<Triggers>
<asp:AsyncPostBackTrigger ControlID="btnInserirGrid" EventName="Click" />
</Triggers>
<ContentTemplate>
</ContentTemplate>
</asp:UpdatePanel>
</ContentTemplate>