I am using the timer control like a stopwatch counting laps. I add each lap to a collection and when I get to 10 laps I patch the collection to a SharePoint list.
The problem is that SharePoint sees the output from the Timer Control as Text and not a number.
My question is how should I format the Timer Control so that it's output is actually a number?
The perfect scenario would be for me to end up with numbers like 52.5 which would be 52.5 seconds. Then I can perform the required math on the backend.
Thank you for reading.