C# – How to get a HTML web page from a Windows Mobile Application

chtmlwindows-mobile

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

Best Answer

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