I have a user control located inside the update panel, i.e. like this.
<asp:UpdatePanel ID="testupdatepnl" runat="server" UpdateMode="Conditional"> <ContentTemplate> <uc1:TestControl ID="ctlTest" runat="server" /> </ContentTemplate> </asp:UpdatePanel>
Now I have a button located inside this user control. Click "Click." I want the page to click the entire page. I tried adding a postback trigger like this
<Triggers> <asp:PostBackTrigger ControlID="clickButton" /> </Triggers>
Since the button is inside the usercontrol, I got an error while working.
Is there a way to do a postback for this button.
source share