Holy Cow,
I figured it out. For future reference, I needed macro substitution [FoxPro in my back ground]. The following worked:
for I = 1 to 10 [loop to chnge all slider extender maximum property to 500, extenders are numbered squentially]
Dim extname as = "SliderExtender" + I.ToString()
Eval(extname).Maximum = "500" {The eval references the control - without a pointer needed[awesome to me!!} - control must have runat=server]
Next
Floydo
No comments:
Post a Comment