Guest User

Untitled

a guest
Apr 26th, 2018
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.78 KB | None | 0 0
  1. private void PreformattedTextButton_Click(object sender, EventArgs e)
  2. {
  3. var url = @"http://www.thepredictiontracker.com/basepred.php";
  4. var data = new MyWebClient().DownloadString(url);
  5. var doc = new HtmlAgilityPack.HtmlDocument();
  6. doc.LoadHtml(data);
  7.  
  8. // m _ a _ e d d d d d d l n
  9. //e h d v r 1 2 3 4 5 6 2 s
  10.  
  11. // BAL D.BUNDY TAM C.ARCHER 7.5 7.48 8.08 7.00 5.58 4.70. . 6.46
  12. // CIN H.BAILEY ATL S.NEWCOMB 9.0 9.72 10.08 10.00 11.62 11.51. . 10.73
  13.  
  14. foreach (HtmlNode pre in doc.DocumentNode.SelectNodes("//pre"))
  15. {
  16. textBox1.Text += pre.InnerText + System.Environment.NewLine;
  17. }
  18. }
Add Comment
Please, Sign In to add comment