摘要: //今天 DateTime.Now.Date.ToShortDateString(); //昨天,就是今天的日期减一 DateTime.Now.AddDays(-1).ToShortDateString(); //明天,同理,加一 DateTime.Now.AddDays(1).... 阅读全文
posted @ 2015-05-22 15:56 dekevin 阅读(5618) 评论(0) 推荐(1) 编辑