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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 10, 20262026-06-10T02:23:33+00:00 2026-06-10T02:23:33+00:00

The HTML is being displayed in a WinForm that is using the built-in WebControl

  • 0

The HTML is being displayed in a WinForm that is using the built-in WebControl

I’ve decided to try HTMLAgilityPack.

var query = from table in doc.DocumentNode.SelectNodes("//table[@class='TABLEBORDER').Cast<HtmlNode>() 
            from row in table.SelectNodes("tr").Cast<HtmlNode>() 
            from cell in row.SelectNodes("th|td").Cast<HtmlNode>() 
            select new {Table = table.Id, CellText = cell.InnerText}; 

foreach(var cell in query) { 
    Console.WriteLine("{0}: {1}", cell.Table, cell.CellText); 
} 

I updated the code as per @L.B
I get the following output

The thread '<No Name>' (0x1e94) has exited with code 0 (0x0).
: 
Target

: 
Triggerenabled?

: 
Account

: 
Passwordchanged?


: 
Error message(if any)

The thread '<No Name>' (0x2564) has exited with code 0 (0x0).

The other data is clearly visible on the webcontrol.

  • 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-06-10T02:23:35+00:00Added an answer on June 10, 2026 at 2:23 am

    The page has other tables but I am only interested in the one with the class being “TABLEBORDER”.

    HtmlAgilityPack.HtmlDocument doc = new HtmlAgilityPack.HtmlDocument();
    doc.LoadHtml(html);
    
    var table = doc.DocumentNode.SelectSingleNode("//table[@class='TABLEBORDER']");
    

    EDIT

    var res = table.Descendants("tr")
                   .Select(tr => tr.Descendants("td")
                                   .Select(td => td.InnerText)
                                   .ToList())
                   .ToList();
    

    EDIT2

    foreach (List<string> tr in res)
    {
        foreach (string td in tr)
        {
            Console.Write("[{0}] ", td);
        }
        Console.WriteLine();
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I've got a table of items being displayed from a database using HTML/jQuery. In
I have an html table containing values that are being generated from javascript. How
I have an html for using POST that is being used to rate images.
I am having a HTML table with 5 rows (say) which is being displayed
I have a table being displayed that converts a file uploaded location ( DocLoc
I have HTML Content which was being displayed in a UITextView . The next
i have an html email being generated by certain php functions and collected from
I have the following HTML structure being returned from an AJAX request... <th scope=col
I have some HTML that is being produced by a WordPress plugin that is
I have an HTML table with one column being email addresses; spambot issues aside,

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.