Ajax Update面板中的进度栏​​未显示

问题描述

| 我写了以下
 <asp:UpdatePanel ID=\"Download\" runat=\"server\">
     <ContentTemplate>
         <asp:Label ID=\"lblMessage\"  runat=\"server\" 
           Text=\"Click the link to download the Report:\"></asp:Label>  
         <asp:LinkButton ID=\"lbtnDownload\" runat=\"server\"  
           OnClick=\"lbtnDownload_Click\" Text=\"Download Excel Sheet\"></asp:LinkButton> 
     </ContentTemplate>
     <Triggers>
         <asp:PostBackTrigger ControlID=\"lbtnDownload\"/>
     </Triggers>
 </asp:UpdatePanel>

 <asp:UpdateProgress ID=\"download1\" runat=\"server\" AssociatedUpdatePanelID=\"Download\">
     <Progresstemplate> 
         <asp:Image ID=\"Image1\" runat=\"server\" ImageUrl\"indicator.gif\" \" />  
     </Progresstemplate>
 </asp:UpdateProgress>
但是进度条图像没有显示,任何人都可以告诉为什么     

解决方法

        删除以下内容:
<asp:PostBackTrigger ControlID=\"lbtnDownload\"/>
    ,        好的,首先要检查的是,您肯定已成功发回邮件,还添加了一个延迟间隔:
<asp:UpdateProgress DisplayAfter=\"0\" ID=\"download1\" runat=\"server\"
   AssociatedUpdatePanelID=\"Download\">