Click here to Skip to main content
15,898,134 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
I have an update progress which works but doesnt show the text or image



<asp:UpdateProgress ID="UpdateProgress1" runat="server" AssociatedUpdatePanelID="UpdatePanel1">
                                            <ProgressTemplate>
                                                Panel1 updating...
                                             
                                            </ProgressTemplate>
                                        </asp:UpdateProgress>   



I have a button to save the image

<asp:UpdatePanel ID="UpdatePanel1" runat="server">
                                         <ContentTemplate>
                                         <asp:Button ID="btnUpload" runat="server" Text="Upload" CausesValidation="true" ValidationGroup="CheckImage" OnClick="btnUpload_OnClick"/>  
                                     
                                        
                                           </ContentTemplate>
                                            <Triggers>
                                        <asp:PostBackTrigger ControlID="btnUpload"  />  
                                         </Triggers>
                                            </asp:UpdatePanel>


Why update progress static text doesnt show up
Posted

1 solution

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