Hi,
I got a question regarding the *damned* dynamic controls. Just wanted to know if its possible to add some controls on the page init event and use them multiple times (like pointers), i just cant get it to work.
so on page_init
Code:dim l as new linkbutton l.text = "Test" l.id = "Test" l.url = "www.whataver.com" me.form.controls.add(l)
then somewhere else
I just get the control one time and then its no longer in the form controls collection... ANY help would be appreciatedCode:for i as integer=0 to 5 dim l as new LinkButton l = me.form.findcontrol("Test") panel.controls.add(l) next
Figa




Reply With Quote