How do they do this? I would like to have web pages with data fields that change in real time as a person views the web page. Here is an example.
How do they do this
I did it with JavaScript timer set execution in milliseconds, each time timer executed function that queried Server with Ajax and returned value(possibly JSON format), then you you update your field with the value. I did it each 5 sec and it works perfectly. In ASP.NET I think it called Ajax Timer Control.