Hi @Padmanabhan, Venkatesh, I cannot reproduce the problem with the code you provided.
"By default, UpdatePanels will only dynamically refresh the content within them, when triggered by controls within them.""By default, UpdatePanels will only dynamically refresh the content within them, when triggered by controls within them."
You try to set Button and DropDownList as AsyncPostBackTrigger in trigger section. Set the ChildrenAsTriggers property to true and the UpdateMode property to Conditional.
<asp:UpdatePanel ID="updatepnl" runat="server" ChildrenAsTriggers="true" UpdateMode="Conditional"> <ContentTemplate> </ContentTemplate> <Triggers> <asp:AsyncPostBackTrigger ControlID="ddlAppln" EventName="SelectedIndexChanged" /> <asp:AsyncPostBackTrigger ControlID="Button1" EventName="Click" /> </Triggers> </asp:UpdatePanel>
Best regards,
Lan Huang
If the answer is the right solution, please click "Accept Answer" and kindly upvote it. If you have extra questions about this answer, please click "Comment".
Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.