Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 4015478
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 20, 20262026-05-20T09:37:26+00:00 2026-05-20T09:37:26+00:00

I want to read xml file in asp.net use c# and also to write

  • 0

I want to read xml file in asp.net use c# and also to write I tried this code

using (XmlReader reader = XmlReader.Create(Server.MapPath("TestXml.xml")))

        { 

            reader.Read();

            while (reader.Read())
            {
                Response.Write( reader.Value.ToString());
                Response.Write("<br />");

            } 

        }

and the output is:

and the xml is

     <?xml version="1.0" encoding="utf-8" ?>
      <note>
      <to>Chayem</to>
      <from>Shaul</from>
      <heading>Way?</heading>
      <body>because</body>
      </note>

What do I do? Thank you.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-20T09:37:27+00:00Added an answer on May 20, 2026 at 9:37 am

    XmlReader.Read() always processes the next node in the document. Note: node, not element. If you step through that code and examine each node, you’ll see that while there are only six elements in the XML document, the XmlReader is processing eleven nodes.

    This is because your XML document (like most) has text nodes containing whitespace characters between the elements. Your code is writing a <br/> to the response every time the XmlReader encounters a node. What you want is to write one out every time the XmlReader encounters an element with text content.

    A way to do this is to simply only write out nodes that contain something other than whitespace, e.g.:

    if (!string.IsNullOrEmpty(reader.Value.ToString().Trim())
    {
       Response.Write(reader.Value.ToString())
       Response.Write("<br/>");
    }
    

    But why are you even using an XmlReader? There are much easier ways to generate this output. Load the XML into an XDocument, for instance, and you can produce the output like this:

    Response.Write(string.Join("<br/>", doc.Descendants()
       .Where(x => (!string.IsNullOrEmpty(x.Value.ToString().Trim())
       .Select(x => x.Value.ToString())
       .ToArray());
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I want to read this xml file using Id on <page> tag. <?xml version=1.0
I want to read a XML file, using XMLReader but the END ELEMENT is
I want to read a xml file using Linq. This xml file is composed
I want to read an xml file, apply a transform, then write to another
I am uploading an xml file in asp.net. what i want to do is
I want to read an XML file located here The data looks like this
I have an asp.net application and I'm using C#. I want to use the
i am using xml parser to read data from xml file. In this file
I want to read an XLSX file into XML and the pass this XML
I want to open and read an XML file using php, but I wont

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.