Click here to Skip to main content
15,892,674 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
In my project i have to save the time taken to solve a sum. If the sum did was wrong then the student have to done it again. In this time i have to add my time with the previous time which i saved in our database..For Example in the first attempt time taken was 00:15:25 (hr:min:sec format),second attempt it is 00:10:25. Then in my database i have to save it as 00:25:50 (adding first and second attempt time)

Right now i'm trying to split the time and getting values separately(ie, taking hr,min,sec time separately and then adding it separately.. Is there any other method.. can i do with jquery or javascript..
Posted
Updated 25-Feb-13 0:40am
v3

The best way is to start with the start time, then find the end time.
C#
DateTime startTime = DateTime.Now;
...
DateTime endTime = DateTime.Now;

If you then subtract them, you get a Timespan:
C#
TimeSpan takenSoFar = endTime - startTime;


When it comes to the second attempt, you do the same thing:
C#
DateTime startTime2 = DateTime.Now;
...
DateTime endTime2 = DateTime.Now;

If you then subtract them, you get a Timespan:
C#
TimeSpan takenThisAttempt = endTime2 - startTime2;


You can then add the two Timespans together:
C#
takenSoFar += takenThisAttempt;
 
Share this answer
 
SQL
You can use TimeSpan

TimeSpan t = TimeSpan.FromSeconds(seconds);

and

use t.Hours, t.Minutes and t.Seconds to format the string how ever you want.
 
Share this answer
 
Comments
shamjid 26-Feb-13 2:13am    
@Maksud:-I can't get u???could u plz explain using code...
Hi,

Use the following code.

TimeSpan time1 = new TimeSpan(0, 15, 25);
            TimeSpan time2 = new TimeSpan(0, 25, 50);
            TimeSpan time = time1.Add(time2);
 
Share this answer
 
v4

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900