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 527133
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 13, 20262026-05-13T08:51:00+00:00 2026-05-13T08:51:00+00:00

I want to read this xml file using Id on <page> tag. <?xml version=1.0

  • 0

I want to read this xml file using Id on <page> tag.

<?xml version="1.0" encoding="utf-8" ?>
    <pages>
      <page id="NewsWatchVideo">
        <HeaderText>Newswatch</HeaderText>
        <BellowText>'abc'.In this video you will see how the press responded to the   .</BellowText>
        <FilePath>FLVPlayer_Progressive.swf</FilePath>
        <NextURL>/Home/OutStory</NextURL>
      </page>
      <page id="OutStory">
        <HeaderText>OUR STORY</HeaderText>
        <BellowText>Join the founders of United First Financial as they talk about how the business and concept was formed.</BellowText>
        <FilePath>FLVPlayer_Progressive.swf</FilePath>
        <NextURL>/Home/MMaoverViewVideo</NextURL>
      </page>
    </pages>

How can i get all the data by id?
I want to use LINQ to XML to do this task.

  • 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-13T08:51:01+00:00Added an answer on May 13, 2026 at 8:51 am

    Given that your XML is loaded into XmlDocument variable ‘doc‘:

    XmlNode page = doc.SelectSingleNode("//page[@id='OutStory']");
    

    i.e. if you want to use a variable id:

    XmlNode page = doc.SelectSingleNode("//page[@id='" + pageId + "']");
    

    Both of which will allow you to do:

    string headerText = page.SelectSingleNode("./HeaderText").InnerText;
    

    EDIT

    If you’re working with LINQ to XML, your variable doc will be of the datatype XDocument and you’ll write:

    XElement page = doc.Descendants("page").Where(p => p.Attribute("id").Value == "OutStory").FirstOrDefault();
    string headerText = page.Descendants("HeaderText").First().Value;
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Hi I can't understand this error I want read this XML file: <?xml version=1.0
This is my XML File. <?xml version=1.0 encoding=utf-8?> <locstrings> <section name=section1> <locstring ID=sectionID1> <Name>SectionName1</Name>
I want to read a xml file using Linq. This xml file is composed
I want to read an xml file placed in assets/ directory. I've tried this
I want to read a XML file, using XMLReader but the END ELEMENT is
I want to read this XML with using a Ext.data.Model into a ExtJS Store:
I am trying to read this XML file using PHP and I have two
I have KML file and I want to read this file and to do
I have one binary file and I want to read this file like first
I have a .txt file having some text. I want to read this file

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.