I am scraping webpages and when I run my scraper application on a windows XP box with IE 8 (it is the max Windows XP supports) it returns different HTML source from webBrowser.Body.OuterHtml than it does when running on Windows 7 with IE9. Does anyone know how to get the raw html unmodified from the webbrowser control??? I know IE modifies HTML so I want to know how to get the raw html returned from the web server. It's annoying because I write the scraper on my windows 7 dev box and then it won't work when I host it on a Windows XP box. If you answer don't tell me to use WebClient and download the page, I want to easily support browsing pages and not have to worry about other little webpage stuff that is taken care of by a webbrowser control. I am using webbrowser control for a reason. Does webBrowser.DocumentText return the raw html or is this still modified html be IE?
|
closed as not a real question by George Stocker♦ Jul 16 '12 at 2:40
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.
|
Fundamentally you have two opposing concerns:
If you really need to use It's also possible that disabling scripting within the browser control would do everything you need it to - but as you haven't given us the reason for using the browser control in the first place, that may not help... |
|||
|
|
|
"I want to know how to get the raw html returned from the web server." Use wget to get the raw HTML and run using System.Diagnostics.Process.Start. I suggest you save the wget.exe into your c:\ drive and you will start it with command line arguments. eg: c:\wget -r http://abc.com This will get you back the raw HTML and you can then scan the HTML using RegEx's, the DOM, etc |
|||||||||||||||
|