我在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;
}
谢谢