Click here to Skip to main content
15,903,030 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
hi all,

i had created a progressbar. now how can i assign to a progress bar to page load.

briefly: i had created a website. now load a page from Login.aspx page to Home.aspx page.for loading it's taking some time forthat i need to provide progress bar between two pages loading. please any tell me how can i will do this?

note: progress-bar should shows the when ever page being load.after completion of page load progress-bar should disappear.

thanks in advance for any suggestion or solution
Posted
Updated 10-May-12 0:35am
v2

You can refer the useful CodeProject article at: Create Simple ASP.NET Progress Bar Control[^]
 
Share this answer
 
Comments
Unareshraju 10-May-12 6:56am    
hi ganesan thank u so-much to reply. i already created progress-bar, now how can i assign(use) that progress bar between two pages in my application.
You can use Ajax, it is very easy

<asp:updatepanel id="updateconfiguration" runat="server" xmlns:asp="#unknown">

Some Stuff

XML
<asp:UpdateProgress ID="UpdateProgress1" runat="server" AssociatedUpdatePanelID="updateconfiguration">
                                       <ProgressTemplate>
                                           <img src="../Images/loadGreen.gif" />
                                       </ProgressTemplate>
                                   </asp:UpdateProgress>




 
Share this answer
 
hi Sudheer! thank u so-much to reply. i already created progress-bar, now how can i assign(use) that progress bar between two pages in my application.
 
Share this answer
 
Comments
member60 10-May-12 7:43am    
you can add a comment or reply to comment instead of posting new solution.

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