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)では検査が機能します。
ありがとう