1
I have a screen that does a lengthy processing, and there’s a for that each next, I want to set a label for the user to see the process.
I know it can be done by ajax, but I haven’t found anything as an example. Anyone can help?
1
I have a screen that does a lengthy processing, and there’s a for that each next, I want to set a label for the user to see the process.
I know it can be done by ajax, but I haven’t found anything as an example. Anyone can help?
0
I know it wasn’t the best solution, but I needed to be fast and as I had already turned the google and nothing helped I decided to do this way.
On the processing screen, where you have the loop, on the button click, I call a Javascript Function that opens a popup and the server onclick remains the same. In loop I Seto the status in application, in how many % and some more information. In the new popup I have a Timer that requires (Ontick) every 10 seconds. In the method he requests, I regain the status of application and Row on the screen.
That is, every 10 seconds you update to the user how the processing is.
Browser other questions tagged c# ajax asp.net vb.net
You are not signed in. Login or sign up in order to post.
You could use a progress bar and display %, it serves ?
– PauloHDSousa
Is it Webforms or MVC? C# or VB?
– Marcus Vinicius
is Vb, web. But can send suggestions c# I convert...
– Levy Furst Neto
Hello, Try using this here. http://www.singingeels.com/Articles/RealTime_Progress_Bar_With_ASPNET_AJAX.aspx
– PauloHDSousa
I’ll give you a read Paul, then comment again if it worked.
– Levy Furst Neto
Paulo, I downloaded the project, ran but it doesn’t work... it gets static and not dynamic as I would like.
– Levy Furst Neto