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

  • Home
  • SEARCH
  • 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 6028615
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 23, 20262026-05-23T04:45:58+00:00 2026-05-23T04:45:58+00:00

I have an XmlDocument containing a XHTML table. I’d like to loop through it

  • 0

I have an XmlDocument containing a XHTML table. I’d like to loop through it to process the table cells one row at a time, but the code below is returning all the cells in the nested loop instead of just those for the current row:

XmlNodeList tableRows = xdoc.SelectNodes("//tr");
foreach (XmlElement tableRow in tableRows)
{
    XmlNodeList tableCells = tableRow.SelectNodes("//td");
    foreach (XmlElement tableCell in tableCells)
    {
        // this loops through all the table cells in the XmlDocument,
        // instead of just the table cells in the current row
    }
}

What am I doing wrong? Thanks

  • 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-23T04:45:58+00:00Added an answer on May 23, 2026 at 4:45 am

    Start the inner path with a “.” to signal that you want to start at the current node. A starting “/” always searches from the root of the xml document, even if you specify it on a subnode.

    So:

    XmlNodeList tableCells = tableRow.SelectNodes(".//td");
    

    or even

    XmlNodeList tableCells = tableRow.SelectNodes("./td");
    

    as those <td>s probably are directly under that <tr>.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have the following code in one of our projects webpages: XmlDocument xDoc =
I have a XMLDocument like: <Folder name=test> <Folder name=test2> <File>TestFile</File> </Folder> </Folder> I want
I have tons of XML files all containing a the same XML Document, but
I have an XML document containing types from 2 XML schemas. One (theirs.xsd) is
Have a source xml document that uses namespace containing prefixes and a default namespace.
I have a string containing XML document using LinqtoXML What is the best way
I have a XmlDocument in java, created with the Weblogic XmlDocument parser. I want
I have an XmlDocument that already exists and is read from a file. I
I have an XmlDocument that is from a webservice, and I want to use
I have a XmlDocument which is not properly formed <library> <dept> <books></books> <language></language> </dept>

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.