Click here to Skip to main content
15,886,644 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
i created a custom list(Forum) and a column(Last topics) as type of datetime.An item is added to the list i want to display timestamping for list items like "1 hour 32 minutes ago" in gridview label control
Posted

1 solution

display timestamping for list items like "1 hour 32 minutes ago" in gridview label control
You need to
1. fetch the datetime data for that item
2. Get the difference in datetime from Now (current datetime using DateTime.Now)
3. Use the difference in a defined format as per your need.

Difference of Datetime will be stored/tracked as TimeSpan. There are properties exposed that will directly give you how much days/hours/minutes in the difference.
Refer: MSDN: TimeSpan Structure[^]

Try!
 
Share this answer
 
Comments
Manas Bhardwaj 27-Aug-12 7:18am    
Correct +5!

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