Ajax UpdateProgress

nate

Member
Joined
Dec 2, 2006
Messages
22
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 wont 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 cant find the object even though it is a registered asp control. Argh. Whats up? Any help would be great. Thanks.
 
Not really played with the UpdateProgress control much, could you not access the label through its .Controls property instead though?
 
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.
 

Similar threads

Back
Top