in your Help you say about ProgressBar:
"Server Control Behavior
The control works both as a client and server control. You can use the control as a server only control simply by setting its properties. You can set the percentage and message and when the page is rendered the control will properly render the settings of the control. The server settings are always used for first time rendering so if you set settings in the designer these settings affect the initial view.
As a server control the control can be useful in scenarios when you have a long, multi-step process where you want to show users your progress of the whole. You can use the control to display the current status as you go along. Note for server only behavior a Postback is required to update the control values."
Please, is it possible do something this:
* start procedure this.wwWebProgressBar.ShowProgress(25,"please wait...") * first block operations this.wwWebProgressBar.ShowProgress(50,"please wait...") * second block operations this.wwWebProgressBar.ShowProgress(75,"please wait...") * ending procedure this.wwWebProgressBar.ShowProgress(100,"please wait...")
What do you mean with "a Postback is required to update the control values"?