本文介绍了更新进度无效的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

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

推荐答案


这篇关于更新进度无效的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

06-01 02:25