Hi,
XmlTextWriter xmlw = new XmlTextWriter("c:\\sun.xml", null);
xmlw.WriteStartDocument();
xmlw.WriteStartElement("Company");
xmlw.WriteStartElement("Skills");
xmlw.WriteElementString("Microsoft", textBox1.Text);
xmlw.WriteElementString("Sun", textBox2.Text);
xmlw.WriteEndElement();
xmlw.WriteEndElement();
xmlw.WriteEndDocument();
xmlw.Close();
I used that above code for writing an xml, now i want to display that xml in text box how to do that?