Updatepanel - Always and conditional together

Asked

Viewed 36 times

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>

1 answer

1


I found out what it was.

I created the onInit method and inserted the

scriptmanager1.EnablePartialRendering = false;

Resolved.

Browser other questions tagged

You are not signed in. Login or sign up in order to post.