要阅读我使用 WebClient 的 html 站点的内容:
WebClient client = new WebClient();
byte[] html = client.DownloadData(url);
UTF8Encoding utf = new UTF8Encoding();
return utf.GetString(html);
当网站像 www.bet365.com 时的问题。赔率以瑞士法郎显示。我如何阅读赔率?我无法通过 Ctrl+U 或 Firebug 在 Mozilla 中显示网站内容。在 IE (F12) 中检查工作。
谢谢