Dynamically create multiple link buttons with different values

WTFish

New Member
I tried something like this.\[code\]xmlN = xml.SelectNodes("Table/Name")For ctr = 0 To xmlN.Count - 1Dim link as new LinkButtonlink.ID= xmlN(ctr).InnerTextlink.name=xmlN(ctr).InnerTextPanel1.controls.add(link)Next\[/code\]But I know it only makes one link where in all the values of xmlN is inside the link is there any way that I can create new link button every loop?
 
Back
Top