UpdatePanel téléchargement de fichier
Bonjour,
J'ai un UpdatePanel associé à un UpdateProgress.
Lorsque je clique sur le bouton télécharger je souhaiterais avoir l'UpdateProgress qui s'affiche mais cela ne fonctionne pas. Comment faire ? Quelle est la solution ?
Voici mon code:
Code:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
|
<asp:UpdateProgress ID="UpdateProgress1" runat="server" DynamicLayout="true" Visible="true"
AssociatedUpdatePanelID="exportUpdatePanel">
<ProgressTemplate>
...
</ProgressTemplate>
</asp:UpdateProgress>
<asp:UpdatePanel ID="exportUpdatePanel" runat="server" RenderMode="Inline" UpdateMode="Conditional">
<ContentTemplate>
</ContentTemplate>
<Triggers>
<asp:PostBackTrigger ControlID="btExportTo" />
</Triggers>
</asp:UpdatePanel> |