-1

Can someone please help show me how to get the data from this website using C#: https://fullmeter.com/fatonline/#/framedata/Guile

I would like to get the data in the table. I tried using webclient download string but I do not see the data in the string. Thanks in advance.

arrowd
  • 33,231
  • 8
  • 79
  • 110
Steve
  • 1
  • you are not able to see it directly because when site loaded not all content has been loaded, and ajax call created to bring the data – Proxytype Jul 15 '17 at 21:18

2 Answers2

1

you are not able to see it directly because when site loaded not all content has been return,ajax call created to bring the data.

use webclient and call this page: https://fullmeter.com/fatonline/lib/characterData.json?ver=010102 you will get it as json sturcture

Proxytype
  • 712
  • 7
  • 18
0

You can try to use WebBrowser class(in WinForms or WPF app, also there are ways to use it in Console app but they are somewhat inconvenient), which has DocumentCompleted or LoadCompleted event which should occur when page has finished loading.

Guru Stron
  • 102,774
  • 10
  • 95
  • 132