Click here to Skip to main content
15,888,984 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more: , +
HI
how to set start time in progressbar in asp.net
i will start progressbar in after 5 second how to it possible

Thanks to advance
Posted

Look on this tutorial what you need to change is that in jquery function they are calling first then setting time interval instead you can set first timeinterval through this call it ...

http://www.dotnetcurry.com/ShowArticle.aspx?ID=384[^]


Hope this helps!!!
 
Share this answer
 
Comments
[no name] 8-Nov-13 4:36am    
it is possible Without jquery ?
Hi Rashmikant patel,
you can use DisplayAfter property of UpdateProgress like as shown below in code its value will be in Miliseconds
ASP.NET
<asp:updateprogress id="UpdateProgressbar" runat="server" enableviewstate="false" displayafter="5000" xmlns:asp="#unknown">
    <progresstemplate>
        <div id="dvBg" style="display:block; width:100%; background-color:#2F8AFF; height:200%; text-align: center;opacity:0.6;position: absolute; left: 0px; top: 0px; ">
        <div id="tblLoading" style=" width: 300px; height: 50px;margin-top:25%;marginleft:42%;">
            <img src="Image/progress_bar.gif" alt="Please wait..." />
       </div>
            </div>
     </progresstemplate>
</asp:updateprogress>



here 5000= 5 seconds

Hope this works!!!!

If yes, do not forget to mark as answer
 
Share this answer
 
Comments
[no name] 8-Nov-13 5:40am    
Thaks a lote
I want to without jquery it is possible ????/
 
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