Nffish's Blog

好记性不如烂笔头

Posts Tagged ‘时间’

十二月 2nd, 2009

友好的日期及时间显示

No Comments, .Net, by Nffish.

使用使用友好的日期显示会有较好的用户体验。非常适合新闻类的网站。 文章发布距当前时间1小时内的,显示n分钟前。 1天内的,显示小时数。 2天和3天的,显示昨天和前天。 7天内的显示,n天前。 其他的显示日期 以下是C#代码: public static string FriendlyDate(Object sdate) {     DateTime date = Convert.ToDateTime(sdate);     DateTime…