tags:

views:

389

answers:

1
+2  Q: 

Progress Bar

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:

JavaScript alternatives:

CMS
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
It's a long running process?? Do you want to show real-time statistics??
CMS
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
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
Agree with ken, you might want something like this: http://tinyurl.com/92b75e
CMS
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