Need to convert a 'System.Xml.XmlNode' to a string

  • Thread starter Thread starter Jack
  • Start date Start date
J

Jack

Hello,

I need to convert a 'System.Xml.XmlNode' to a string.

Any help would be great!!!

Thanks,

Jack
 
Try this:

dim str as String
dim node as xmlnode ... blabla

str = node.outerxml

Something like that.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top