要阅读html网站的内容,请使用WebClient:
WebClient client = new WebClient();
byte[] html = client.DownloadData(url);
UTF8Encoding utf = new UTF8Encoding();
return utf.GetString(html);
网站如www.bet365.com时的问题。赔率显示在swf中。我怎样才能读取赔率? 我无法通过Ctrl + U或Firebug在Mozilla中显示网站的内容。在IE(F12)检查工作。
由于