I need to have a progress bar that should have a text that indicates what is actually happening . This text will keep on changing based on what is currently happening .
To explain a bit more , I am developing a web crawler. So the progress bar should display the current URL that is being crawled.
What would be the best way to do it ? AJAX or Jquery ? Just need to be simple enough.
Will the existing AJAX progress bar control that comes with VS supports this ?
Thanks in Advance.
As far as I know, the default loading panel is shown while the current thread is blocked until server response is received at the client browser. So it would not be possible to achieve what you want using the default one. But I think you should be able to do a custom implementation. If I were you, I’d start having a timer and do regular polls to the server to get the current task. And instead of showing the default loading panel you can show the result from the timer-poll and show the result in a popup div.