Ajax UpdateProgress

nate

Freshman
Joined
Dec 2, 2006
Messages
36
How do you reference a control in an Ajax UpdateProgress Control. I put a label in it and it shows up on the associated panel page update like it is supposed to. But if I try to change the text in the label via code, intellisense won't even show it exists and I get errors forcing it. Itried the following and nada. Please help!

Code:
UpdateProgress1.Lable1.Text="test"

or

Code:
Lable1.Text="test"

I can't find the object even though it is a registered asp control. Argh. What's up? Any help would be great. Thanks.
 
I got around it by simply using another UpdateProgress control and associating the same panel. Then as I want to display the other messege I simply make one visible and the other not. Ehh, worked. Thanks for the input.
 
Back
Top