Click here to Skip to main content
15,885,546 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
I have a WebForm(created using a master page). THis WebForm contains a UserControl and i want to reload this UserCOntrol on ButtonClick event of a button which is outside the UserControl and inside the WebForm. How can i do this? I do not want to reload entire WebForm.

XML
<asp:UpdatePanel runat="server" id="UpdatePanel" updatemode="Conditional">
        <Triggers>
            <asp:AsyncPostBackTrigger controlid="Button1" eventname="Click" />
        </Triggers>
            <ContentTemplate>




               <uc2:GetUserScraps ID="GetUserScraps1" runat="server" />



     </ContentTemplate>
        </asp:UpdatePanel>


I am not sure what to do on Code Behind?
Posted

1 solution

I also suffer from this problem and i get soln

XML
<asp:UpdatePanel runat="server" id="UpdatePanel" updatemode="Conditional">
            <ContentTemplate>
               <uc2:GetUserScraps ID="GetUserScraps1" runat="server" />

     </ContentTemplate>
        </asp:UpdatePanel>



Update this panel from code behind on button click event like
UpdatePanel.Update()

If your design structure in table use update panel like

XML
<asp:UpdatePanel ID="updpnlRefresh" runat="server" UpdateMode="Conditional">
        <ContentTemplate>

//Your table structure
 
Share this answer
 
v2

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900