Reputation: 648
After searching for a couple hours on google, I have to turn to stackoverflow once again for answers. Recently, Ive been trying to come up with a some sort of box that updates with lines of text. For example:
-getting files //wait 3 seconds
-storing files // wait 4 seconds
-sending files // wait 5 seconds
Im writing a web application from scratch using c#, asp.net and visual studio. What I would like to do is create a text box or a window and store the text in an array that will change the text after a certain amount of time.
This does not have to be updated in real time. Its just a project Im working on that provides the "user" with some goof proof data because this process takes a little while. This process will run once the user clicks the submit button. Could anyone here point me in the right direction or get me started? Thank you so much in advance!
Upvotes: 0
Views: 186
Reputation: 11577
This is very old article about how to update the progress in ASP.NET 2.0.
If you are using Ajax, you may want to try this AJAX: How to create a "Processing" modal window using UpdateProgress and ModalPopup ASP.net AJAX controls
Upvotes: 1