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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 31, 20262026-05-31T13:30:08+00:00 2026-05-31T13:30:08+00:00

If it is possible to read information from a website that is organized using

  • 0

If it is possible to read information from a website that is organized using a standardized layout, meaning that the site’s controls/textboxes/button etc are always in the same location, but the data/values it is holding changes.

In a C# WinForm application can I open that page in the background read some values and use those in my form? Is there a way to reference specific areas/items on the webpage, even if it is something as inefficient as tabbing exactly 12 times? Am I totally dreaming here?

Again I don’t need to click certain things on the page, just read what is in a certain textbox or things of that nature.

  • 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-31T13:30:09+00:00Added an answer on May 31, 2026 at 1:30 pm

    You could also use the webbrowser control to do this. To get all of the posters in this thread and their reputation, you could do this:

    private void Form1_Load(object sender, EventArgs e)
    {
        webBrowser1.Navigated += new WebBrowserNavigatedEventHandler(webBrowser1_Navigated);
        webBrowser1.Navigate("http://stackoverflow.com/questions/9712699/read-website-information-display-application");    
    }
    
    
    private void webBrowser1_Navigated(object sender, WebBrowserNavigatedEventArgs e)
    {
    
        foreach (HtmlElement ele in webBrowser1.Document.GetElementsByTagName("SPAN"))
        {
            if (ele.GetAttribute("title") == "reputation score")
            {  
                MessageBox.Show(ele.Parent.Children[0].InnerText + " - "+ ele.InnerHtml);
            }
        }
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Is it possible (and if yes - how) to read information from a Shared
I have a php file that dynamically read information from various sources, like search.php?q=keyword&category=cat-number
Is it possible to read binary MATLAB .mat files in Python? I've seen that
Is it possible to read WPF ResourceDictionaries from WinForms? If yes, how?
Is it possible to read the content of a file that has been selected
I was wondering if it was possible to read a text file that was
I've read many times that Assemblies generated from F# or any other .NET language
Is it possible to read web content from the end? I'm trying to fetch
Is it possible to extract chart information from an Office 2007 (xlsx / OpenXML)
My windows program receives information from another program via directory/file interface. That is the

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.