C # tool for save as webpage and offline viewing

Is there any open source C # tool that can make the web page “save as” or “save” and load all the content so that I can perform offline browsing later?

EDIT: As a note, I want the tool to allow me to save content from hotmail.

+3
source share
2 answers

I don’t know of a specific tool, however, the .NET Framework has classes for creating HTTP requests, and CodePlex has an open source library called the “Html Agility Pack”, which is well versed in Html. By combining these tools, you are probably pretty easy to write them yourself. I used the Html Agility Pack myself in the past to get the Daily Dilbert cartoon to see if it could be done (someone else did, of course), and the Html Agility Pack was good enough for that if the memory serves.

+1
source

There is (for example) a tool called HTTrack Website Copier that does this for you.

, # .

+2

All Articles