html标签在源代码中无法识别

时间:2017-10-15 21:59:24

标签: c# html webclient downloadstring

我在C#中使用了一个下载网站源代码的方法,但相关的html标签并不总是存在。例如"< a href"。

这是方法:

    public static string GetHTMLCodeByUrl(string url)
    {
        // Create web client.
        WebClient client = new WebClient();

        // Download string.
        string htmlCode = client.DownloadString(url);

        return htmlCode;
    }

谢谢

0 个答案:

没有答案