Linked Questions
13 questions linked to/from Pulling data from a webpage, parsing it for specific pieces, and displaying it
4 votes
2 answers
2k views
Web page(html) scraping using C#
This is just a general question. Currently I am doing webpage scraping using regex. But I think it is sometimes too difficult to figure out the regular expression, so I am thinking is XSL/XPath an ...
2 votes
1 answer
2k views
Chrome copy XPath returning null when using HtmlAgilityPack
I'm following the answer given here: https://stackoverflow.com/a/18066671 string Url = "http://www.owgr.com/ranking"; HtmlWeb web = new HtmlWeb(); HtmlDocument doc = web.Load(Url); ...
2 votes
1 answer
2k views
How to extract data from a website with specifying a search criteria?
I have got this new project that I am not familiar in working with. One task is that I need to navigate some websites to collect some data. One sample website would be this: https://www.hudhomestore....
-1 votes
1 answer
2k views
How to read HTML like read text file and start read from specific line
I have data like this: <tr class=hdr> <th class="al cf">Name</th> <th class="al">Type</th> <th class="ar">Used Drive Space</th> <th class="...
-1 votes
2 answers
2k views
Dynamical Header and Footer in MVC .net
I was asked to add a corporate header and footer in a webpage that I'm building. The design team gave me two links, one with the header and the another with the footer. What I did was to open that ...
0 votes
1 answer
1k views
Get data from the website open in the WebBrowser
I am in the same situation at the guy who asked this question. I need to get some data from a website saved as a string. My problem here is, that the website i need to save data from, requires the ...
0 votes
2 answers
1k views
downloading web pages html into html document
I want to get the html of a web page. Then with this html there are two elements who's xpath I have that I want to read. I have little to zero knowledge on this topic. When searching I keep seeing ...
0 votes
1 answer
347 views
Xamarin how to pull data from a aspx web page
First of all I am fairly new to this so please forgive me if I am asking a noobish question. I am using Xamarin Forms and trying to get some table data from a webpage. This is my current code block: ...
0 votes
2 answers
161 views
XML and JSP parsing in C#
I have this XML feed file and I don`t know how to handle a problem. So, the code is: <PRICE> <WIC>GA-H110M-S2H</WIC> <DESCRIPTION> GIGABYTE Main Board Desktop INTEL H110 (...
1 vote
0 answers
151 views
Find value using ID from webBrowser and put it in text box in C#
I am trying to get the value of an ID from a website and put that into a textbox. The website code looks like this: <input type="hidden" id="recaptcha-token" value="...
0 votes
1 answer
61 views
Entering a Username to Check another website?
Essentially what I am attempting to do is you enter a piece of information in a textbox and click submit. It'll then check another website to see if the username is available It'll then return back ...
0 votes
0 answers
45 views
having trouble pulling HTML data from a website using C#
I found a question posted here that had something interesting i wanted to implement in my application. Previous question(this is using HtmlAgilityPack): Pulling data from a webpage, parsing it for ...
0 votes
0 answers
44 views
Getting a number from a webpage and storing it as an int
I want to retrieve my Bitcoin mining hashrate from my pool webpage and store it as an int so that I can print it to the console. I tried using the HtmlAgilityPack which never seemed to have worked ...