2011年8月27日
摘要: 后台处理代码: /// <summary> /// 在日期上加上相应天数 /// </summary> /// <param name="date"></param> /// <returns></returns> public string GetDateTime(string date) { string time = ""; DateTime dt = Convert.ToDateTime(date).AddDays(1); time = dt.ToString("y 阅读全文
posted @ 2011-08-27 12:18 海纳 阅读(278) 评论(0) 推荐(0) 编辑