UpdateProgressがダウンロードファイルで動作しません。以下のコードを見てください。このコードでは、私はupdatepabnel ans updateprogressを使っています。UpdateProgressがダウンロードファイルで動作しない
btngenをクリックしてください。Excelファイルをダウンロードしています。ファイルがダウンロードされていますが、UpdateProgressが表示されていません。私はPostBackTriggerしていない場合は、そのRepotをダウンロードしていない場合は、PostBackTriggerは、そのupdateprogressを示していない。 plsはこの問題を解決する方法を提案します。私は別のポップアップを開きたくありません。
<asp:UpdateProgress ID="prgbar" runat="server" AssociatedUpdatePanelID="pnl1" DynamicLayout="true">
<ProgressTemplate>
<asp:Label id="lblmsg" Text="Please wait while the report generates...." runat="server"></asp:Label>
</ProgressTemplate>
</asp:UpdateProgress>
<asp:UpdatePanel ID="pnl1" ChildrenAsTriggers="False" runat="server" UpdateMode="Conditional">
<ContentTemplate>
<asp:Button ID="btngen" Text="Generate" runat="server" onclick="btngen_Click" />
</ContentTemplate>
<Triggers>
<asp:PostBackTrigger ControlID="btngen" />
</Triggers>
</asp:UpdatePanel>
これはUpdateProgressコントロールを示していますが、ファイルをダウンロードすると消えません。送信する更新はありますか? – sinsedrix