This is a discussion on display xml in textbox within the C# Programming forums, part of the Software Development category; display xml in textbox Hi, XmlTextWriter xmlw = new XmlTextWriter("c:\\sun.xml", null); xmlw.WriteStartDocument(); xmlw.WriteStartElement("...
| |||||||
| Register | FAQ | Members List | Calendar | Mark Forums Read |
|
#1
| |||
| |||
| display xml in textbox 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?
__________________ A.Rajesh Khanna |
|
#2
| |||
| |||
| |
|
#3
| |||
| |||
| HI all, Or you can use the StreamReader to copy all the content in the XML file to the TextBox: Code Snippet using (StreamReader sr = new StreamReader(@"c:\test.xml")) { this.textBox1.Text = sr.ReadToEnd(); }
__________________ Shaalini.S ![]() Be the Best of Whatever you are... |
|
#4
| |||
| |||
| Hi, Thank a lot for giving reply I want to copy from XmlTextwriter not c:\test.xml bcoz bfore saving only i want to display from memory
__________________ A.Rajesh Khanna |
|
#5
| |||
| |||
| Hi! You can't use the XmlTextWriter to update the textbox. Use the XmlTextReader instead to read the xml file.
__________________ Shaalini.S ![]() Be the Best of Whatever you are... |
![]() |
| Thread Tools | |
| Display Modes | |
| |
Similar Threads | ||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Showing C# Intellisense in TextBox | arjkhanna | C# Programming | 3 | 05-25-2009 10:56 PM |
| textbox in Gridview | packirisamy | ASP and ASP.NET Programming | 2 | 07-22-2008 03:56 AM |
| How to validate a TextBox inside a Repeter? | KiruthikaSambandam | ASP and ASP.NET Programming | 0 | 03-24-2008 03:27 AM |
| How to create textbox without border? | ramkumaraol | PHP Programming | 2 | 09-07-2007 05:13 AM |
| How to create html from the content of the textbox? | Balasubramanian.S | C# Programming | 4 | 03-29-2007 07:30 AM |
Our Partners |