UpdateProgress Does Not Display

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I have 3 UpdatePanels and 1 UpdateProgress control. If I set the
UpdateProgress Control to one of the UpdatePanels, nothing displays on
postback. If I don't set the associated control for the UpdateProgress
controls, still nothing displays. Does anyone have any idea what I'm missing
here?

Thanks.
 
Howdy,

Changing DisplayAfter property of the UpdateProgress to 0 should help
(default value is 500 miliseconds). If it doesn't please paste the code.
 
I have 3 UpdatePanels and 1 UpdateProgress control. If I set the
UpdateProgress Control to one of the UpdatePanels, nothing displays on
postback. If I don't set the associated control for the UpdateProgress
controls, still nothing displays. Does anyone have any idea what I'm missing
here?

Thanks.

Try to make a "delay" in the method that used to update UpdateProgress

For example

protected void Button1_Click(...)
{
System.Threading.Thread.Sleep(1000);
.... some code here....
}
 
Back
Top