How do you truncate the seconds bit from a timespan object in C#? i.e. 15:37
I'm outputting a timespan object to JavaScript in the format of HH:mm and kind of want the server side to process providing the correct format instead of clients browsers, can that be done without providing this as a C# string object to JavaScript?
TimeSpanis a value, not a string representation of a value. If you need it in a specific format, you will need to convert it to a string. – Fredrik Mörk Feb 24 '11 at 23:04