views:

96

answers:

3

I'm working with C#.net developing applications for windows mobile 6, and i need get the HTML code from a web page, i mean, i need download the page and then get the code or parse it to string.

someone know how can i do it?

I know there is the WebClient Class for desktop app, but i didn't find something like that for mobile app

A: 

You can use the HttpWebRequest class to make a GET request and read the HTML code.

kgiannakakis
A: 

Use the System.Net.WebClient class and call DownloadStringAsync to download any resource from the web asynchronously.

Rich
A: 

URLDownloadToFile

Johann Gerell