ASP.Net application dynamically updating

xlordnashx

New Member
I need to write a ASP.Net client application to my web service. And its necessary to update state of client application, because the last one must every time check the data from my web service.As a test, for example i have a webservice, that has a method called "Inc" whichreturns "previous value" + 1. For example before the first call of "Inc" value = http://stackoverflow.com/questions/14069606/0, then the first call returns 1 and so on.How to make that ASP.Net application every 300ms will call"Inc" method and print the result into TextBox control?
 
Back
Top