码迷,mamicode.com
首页 > 其他好文 > 详细

将两个时间组合,结果为2015年4月8日-4月10日

时间:2015-03-05 19:23:44      阅读:134      评论:0      收藏:0      [点我收藏+]

标签:

时间 2015-04-08 00:00:00

       2015-04-10 00:00:00

 

//格式化时间
    protected string Time(string id)
    {
        string text = "";
        DataTable dt = DB.GetDataTable("s_start,s_end", "huodong", "i_state = 1 and i_id=" + id, "");
        if (dt.Rows.Count > 0)
        {
            DateTime tt = Convert.ToDateTime(dt.Rows[0][0].ToString());
            DateTime dd = Convert.ToDateTime(dt.Rows[0][1].ToString());
            text = tt.GetDateTimeFormats(‘D‘)[0].ToString() + "-" + dd.GetDateTimeFormats(‘M‘)[0].ToString();
        }
        return text;

    }

将两个时间组合,结果为2015年4月8日-4月10日

标签:

原文地址:http://www.cnblogs.com/candyzhmm/p/4316501.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!