generating xml programatically

Posted by Shailesh21235 under ASP.NET on 5/14/2013 | Points: 10 | Views : 1500 | Status : [Member] | Replies : 1
hello,
I want to generate a XML by writing code in C#.net where the nodes should be filled with the datas from the database. How to use the database values to generate a xml?




Responses

Posted by: perfectchourasia-9163 on: 5/20/2013 [Member] Starter | Points: 25

Up
0
Down
System.Xml.XmlTextWriter xt = new System.Xml.XmlTextWriter("d:\\bb.xml", null);
xt.WriteStartDocument();
xt.Formatting = System.Xml.Formatting.Indented;
xt.WriteStartElement("bookcatalogue");
xt.WriteStartElement("book");
xt.WriteAttributeString("ISBN", "0-06-064831-7");
xt.WriteElementString("Title", "XML Essentials");
xt.WriteElementString("Author", "Brennet Bronx");
xt.WriteElementString("Price", "$12.34");
xt.WriteEndElement();
xt.WriteStartElement("book");
xt.WriteAttributeString("ISBN", "0-16-003321-4");
xt.WriteElementString("Title", "Understanding XML");
xt.WriteElementString("Author", "Jagadeesh Bose");
xt.WriteElementString("Price", "$15.00");
xt.WriteEndElement();
xt.WriteEndElement();
xt.WriteEndDocument();
xt.Close();


ER sandeep chourasia
sandeepchrs@yahoo.com (on facebook)
http://www.aspnetcodes.com/

Shailesh21235, if this helps please login to Mark As Answer. | Alert Moderator

Login to post response