Is there a way to make a progress bar like that in gmail in ASP.net
+3
A:
Here are some ASP .NET based Progress Bar controls:
- ASP.NET AJAX Progress Bar Control
- ASP .NET Progress Bar (ASP .NET Control Gallery)
- ASP .NET Static Progress Bar control
JavaScript alternatives:
CMS
2009-01-05 04:28:03
I need the progress bar running until all the response from server is rndered to the browser, not a static one. It should run according to the response content
rahul
2009-01-05 04:31:22
It's a long running process?? Do you want to show real-time statistics??
CMS
2009-01-05 04:37:52
Yes, sometimes my page loads faster and sometimes a bit slow. So I have to show the bar not in a static way ( using response to flush for a specific period ) but by calculating the time it requires for the response to finish.
rahul
2009-01-05 05:45:56
you can't possible calculate the exact ETA of the page your delivering, result will be undeterministic. you can use rotating animation in a modal div though then on page load remove it
ken
2009-01-05 06:35:53
Agree with ken, you might want something like this: http://tinyurl.com/92b75e
CMS
2009-01-05 06:48:58
I think the above site uses window.settimeout function to display a div for a particular period of time.But I don't want this. Is there any other way of doing it??
rahul
2009-01-05 07:16:30