I have a webPage that has a timer on it. When this timer runs it updates a text field on a container on that webPage. The timer is set to multiple and 1000 milliseconds. I would expect my code that is just a simple add one every time it runs to count upward starting at 1.
However, it hits one and doesnt update again. Is this a problem with the timer? the fact its trying to run on the container multiple times? or ???
Var count as integer
count = count + 1
webPage.container1.Label1.Text = count.ToString