Please note: I do not want to read the HTML content of a page, rather, I am looking to read the text from a web page. Imagine the following example, if you will -

A PHP script echos back "Hello User X" onto the current page, so that the user is now looking at a page (mainly blank) with the words "Hello User X" printed in the top left corner. From my C# Application, I would like to read the text onto a string.

String strPageData = functionToReadPageData("http://www.myURL.com/file.php");

Console.WriteLine(strPageData); // Outputs "Hello User X" to the Console.

In VB6 I was able to do this by using the following API:

  1. InternetOpen
  2. InternetOpenURL
  3. InternetReadFile
  4. InternetCloseHandle

I attempted to port my VB6 code to C# but I am having no luck - so I would very much appreciate a C# method for completing the above task.

link|improve this question

79% accept rate
How do you define text? Is the link text also part of text? or only strings that are inside a <div> or <span> tag? What about button label text? – Philipp Schmid Aug 31 '11 at 23:40
@Phillip Look here: nanisolutions.zxq.net/PHP/… I want only "hah mmm hdhd jkdjd 0 0" to be returned. – Evan Aug 31 '11 at 23:43
Please don't prefix your questions with "C#" and such. You've already used the tags for that purpose. – John Saunders Sep 1 '11 at 0:20
feedback

2 Answers

up vote 1 down vote accepted

I am not aware of any parts of the .NET framework that lets you automagically extract all the text from a HTML file. I very much doubt it exists.

You can try the HtmlAgilityPack (3rd party) for accessing text elements etc in a HTML document.

You will still need to write logic to find the correct HTML element though. A HTML page like this:

<html>
     <body>Some text</body>
</html>

Then you would need to locate the body tag with an xpath and read its content.

HtmlNode body = doc.DocumentElement.SelectNodes("//body");
string bodyContent = body.InnerText;

Following that pattern you can read every element on the page. You might need to do some post processing to remove breaks, comments etc.

http://htmlagilitypack.codeplex.com/wikipage?title=Examples

link|improve this answer
This is very confusing for me, I am not able to figure out how to make this work properly. I will keep at it though and let you know if I can get anything to work ... I would rather not have to bother with the HTML at all though. – Evan Aug 31 '11 at 23:52
Updated my response with a a code sample – havardhu Sep 1 '11 at 0:05
I will use this method for now. Thank you. – Evan Sep 1 '11 at 0:57
feedback

You should use WebClient class to do this.

link|improve this answer
I had checked out this class a while ago - but I was only able to read the HTML, not the actual text on the page. Any ideas as to what I may have been doing wrong? – Evan Aug 31 '11 at 23:38
1  
+1. Use the WebClient class and strip out the text using a HTML Parser. If you dont want to go the html parser or RegEx route you could save the HTML and using IE or Safari get the plain text using javascript eg: document.body.innerText – Jeremy Thompson Sep 1 '11 at 0:54
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.