0

I tried something like this.

xmlN = xml.SelectNodes("Table/Name")
For ctr = 0 To xmlN.Count - 1
Dim link as new LinkButton
link.ID= xmlN(ctr).InnerText
link.name=xmlN(ctr).InnerText
Panel1.controls.add(link)
Next

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?

1 Answer 1

1

you need to set link.Text = "any value" , otherwise the client will not be able to see the link.

Sign up to request clarification or add additional context in comments.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.