Download full web page

Are there any existing frameworks that can load a full web page (and not a web site): HTML page, stylesheets, (javascripts) and images?

I would like to avoid parsing HTML and style sheets if possible.

+3
source share
2 answers

I know there is an HTML Agility Pack - this will definitely make part of the HTML.

You can easily request it for related images, style sheets and javascript files, but it will not be able to process them.

See this SO Question for parsing CSS.

Besides using JScript , I cannot imagine a single Javascript analyzer for .NET.

+2

wget CLI. -p -:

wget -p www.yousite/page.html
+3

All Articles