Good evening C# professionals :) I'm an IT student and I'm currently doing my thesis. Can you guys help me? The system I'm working with is timesheet of service engineers. The system supposed to have a timewatch/stopwatch that triggers to start whenever the service engineer started his time. And of course stops when he stopped the time. And then that's it, his work hours will be then calculated based on the time duration.. I'm using asp.net. Is this possible using C# language? please help me. :(
Loading
janine valenzonaPosted Mar 22, 2010, 1:53 AM
Amit ChoudharyPosted Mar 17, 2010, 8:45 AM
you can do it by following ways:
As the user enter to the system like login or some other activity he do to start the time. Just save that time into either database of some other persistent variable.
Again when he logged out or do some stop activity then again note the time get the difference between them. you will have a total duration he worked.
No Timer No stop watches and you are done with the task.
Please mark as answer.