Click here to Skip to main content
15,921,113 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hi Developers,


I'm Using below code, in that Progress popup window is closing before downloading large file.how to rectify that!Please note that i also used in codebehind : "System.Threading.Thread.Sleep(5000);"

XML
<asp:UpdateProgress AssociatedUpdatePanelID="UpdatePanel1" ID="updProgress" runat="server">
        <ProgressTemplate>
            <div id="progressBackgroundFilter">
            </div>
            <div id="processMessage">
                <br />
                <br />
                <img alt="Loading" src="images/UpdateProgress_ModalWait_4.png" /></div>
        </ProgressTemplate>
    </asp:UpdateProgress>
Posted

1 solution

just write this in script manager tag.
VB
<asp:ScriptManager ID="ScriptManager1" runat="server" AsyncPostBackTimeout="10000">

using this it'll run continue.
Hope this will help you.
Don't forget to mark this as answer if it helps. :)
 
Share this answer
 

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