Click here to Skip to main content
Sign Up to vote bad
good
See more: C#ASP.NET
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 29 Jan '13 - 23:58
shamjid1.2K
Edited 25 Feb '13 - 0:40


3 solutions

The best way is to start with the start time, then find the end time.
DateTime startTime = DateTime.Now;
...
DateTime endTime = DateTime.Now;
If you then subtract them, you get a Timespan:
TimeSpan takenSoFar = endTime - startTime;
 
When it comes to the second attempt, you do the same thing:
DateTime startTime2 = DateTime.Now;
...
DateTime endTime2 = DateTime.Now;
If you then subtract them, you get a Timespan:
TimeSpan takenThisAttempt = endTime2 - startTime2;
 
You can then add the two Timespans together:
takenSoFar += takenThisAttempt;
  Permalink  
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.
  Permalink  
Comments
shamjid - 26 Feb '13 - 2:13
@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);
  Permalink  

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

  Print Answers RSS
Your Filters
Interested
Ignored
     
0 Mahesh Bailwal 413
1 Sergey Alexandrovich Kryukov 384
2 Maciej Los 200
3 Aarti Meswania 193
4 Rohan Leuva 165
0 Sergey Alexandrovich Kryukov 9,417
1 OriginalGriff 7,204
2 CPallini 3,933
3 Rohan Leuva 3,211
4 Maciej Los 2,743


Advertise | Privacy | Mobile
Web01 | 2.6.130516.1 | Last Updated 25 Feb 2013
Copyright © CodeProject, 1999-2013
All Rights Reserved. Terms of Use
Layout: fixed | fluid