hi
i have 2 files of xml that i need to read from, the files are in the link:
http://planet.nana.co.il/s3d (under the title
vb.net)
i need to read data from the xml foles to a label
this cod is not good, how to fx it?
Private Sub ButtonGo_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles ButtonGo.Click
Dim r1 As XmlTextReader
r1 = New XmlTextReader("c:/1.xml")
//here is the problem!
//how can i get the question from the xml file?
LabelQ.Text = r1.ReadElementString.ToString()//return bag
r1.Close()
End Sub
thanks