开发者

C# HTML Code Reader

what i'm trying to do this this. S开发者_如何学运维imply create a C# windows app that when that when i point it to a website will download the HTML code. Kind of like when you use IE and you choose view source. Any starting point would be great.


Have a look at the WebClient class.


You probably want to look into HttpWebRequest in .NET.

WebClient may be another class for you to explore.

It provides an HTTP specific implementation of WebRequest which can be used to download HTML (or any other content, really) using the HTTP protocol.


Have you looked into the WebClient class?

using(WebClient webClient = new WebClient())
{
    string html = webClient.DownloadString("http://www.someurl.com");
}


You could create a wrapper around wget, which already does all the heavy lifting.


You should look for HttpWebRequest class. You can use it for making requests. Also take a look on a ready-made solution Watin

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜