Wrox Programmer Forums
Go Back   Wrox Programmer Forums > Visual Basic > VB.NET 1.0 > Pro VB.NET 2002/2003
|
Pro VB.NET 2002/2003 For advanced Visual Basic coders working .NET version 2002/2003. Beginning-level questions will be redirected to other forums, including Beginning VB.NET.
Welcome to the p2p.wrox.com Forums.

You are currently viewing the Pro VB.NET 2002/2003 section of the Wrox Programmer to Programmer discussions. This is a community of software programmers and website developers including Wrox book authors and readers. New member registration was closed in 2019. New posts were shut off and the site was archived into this static format as of October 1, 2020. If you require technical support for a Wrox book please contact http://hub.wiley.com
 
Old September 2nd, 2004, 10:50 PM
Registered User
 
Join Date: Aug 2004
Posts: 4
Thanks: 0
Thanked 0 Times in 0 Posts
Default VB.NET: Convert String and append to Xml files

Hi

Say i receive one string full of Xml tags ...

Example: "<Person>John</Person><Item>Pen</Item><Amount>4</Amount>"


How to save and append these tags to my xml files..

They told me to use appendChild method.. maybe i am not quite sure with string....... i save the string two times instead..
I am using VB.NET....

Dim myDoc As New Xml.XmlDocument
Dim myXml As String
myXml = "<Person>John</Person><Item>Pen</Item> _
<Amount>4</Amount>

myDoc.LoadXml(myXml)

Dim root As XmlNode = myDoc.DocumentElement

Dim person As XmlElement = myDoc.CreateElement("Person")
person.InnerText = John

Dim itemy As XmlElement = myDoc.CreateElement("Item")
item.InnerText = pen

Dim amount As XmlElement = myDoc.CreateElement("Amount")
amount.InnerText = 4

root.AppendChild(person)
root.AppendChild(item)
root.AppendChild(amount)
myDoc.Save("1.xml")

How to solve this so that it will append to the xml whenever i receive a string...

Thanks.








Similar Threads
Thread Thread Starter Forum Replies Last Post
convert string to xml prafullaborade XML 3 May 21st, 2008 06:56 AM
convert string to datetime in VB.net lisabb ASP.NET 2.0 Basics 3 June 19th, 2007 06:52 AM
convert otb files to hex string ela Classic ASP Professional 1 October 14th, 2004 01:20 PM
XML to String in VB.NET dimondwoof XML 1 June 24th, 2003 10:40 PM





Powered by vBulletin®
Copyright ©2000 - 2020, Jelsoft Enterprises Ltd.
Copyright (c) 2020 John Wiley & Sons, Inc.