Create xml file
XML / XSL
3
Posts
3
Posters
0
Views
1
Watching
-
you can use xmldocument to create the xml file.
All The Best Sathesh Pandian
-
Hi, Dim dom As New Xml.XmlDocument dom.LoadXml("") Dim root As Xml.XmlElement = dom.DocumentElement Dim Elem As Xml.XmlNode = dom.CreateNode(Xml.XmlNodeType.Element, "item", "") Elem.InnerText = "XYZ" root.AppendChild(Elem) MsgBox(dom.DocumentElement.OuterXml) dom.Save("dom.xml") for more details go to http://msdn2.microsoft.com/en-us/library/system.xml.xmldocument.aspx[^] hope this helps :)
NajiCo http://www.InsideVB.NET[^] It's nice 2b important, but it's more important 2b nice...