Forum Moderators: open
short modified snippet:
Public Sub Page_Load()
Dim Service As Something.Something2 = New Something.Something2()
Text1.Text = Service.GetInfo(X).FirstName
End Sub
now that will fill Text1.Text with the data from the FirstName node, however I'm wondering how to save this as an xml file or even more importantly how to output this as xml on the screen without having to rebuild it from scratch which seems redundant since it's already in xml format.
Any Help would be greatly appreciated, and I thank you in advance.