2010-11-04 255 views

回答

75
var day = value.Date; // a DateTime that will just be whole days 
var time = value.TimeOfDay; // a TimeSpan that is the duration into the day 
+1

沒想到它是如此明顯! :) – gideon 2012-02-01 13:25:28

23

您還可以使用DateTime.Now.ToString("yyyy-MM-dd")的日期,並DateTime.Now.ToString("hh:mm:ss")的時間。

+2

只有當你想要一個字符串... – Dismissile 2010-11-04 13:40:03

+0

良好的通話。這就是我匆忙回答的原因。馬克Gravell釘牢它。 – 2010-11-04 14:24:07

+2

我想說,你正在尋找一個經常足以讓這個答案有價值的字符串。 – GWLlosa 2010-11-04 15:08:12

13

您可以使用Instance.ToShortDateString()的日期,
Instance.ToShortTimeString()的時間從同一個實例獲得的日期和時間。

-1

有時你想擁有你的GridView一樣簡單:

<asp:GridView ID="grid" runat="server" /> 

你不想指定任何綁定列,你只是想你的網格DataReader的結合。 下面的代碼幫助我在這種情況下格式化DateTime。

protected void Page_Load(object sender, EventArgs e) 
{ 
    grid.RowDataBound += grid_RowDataBound; 
    // Your DB access code here... 
    // grid.DataSource = cmd.ExecuteReader(CommandBehavior.CloseConnection); 
    // grid.DataBind(); 
} 

void grid_RowDataBound(object sender, GridViewRowEventArgs e) 
{ 
    if (e.Row.RowType != DataControlRowType.DataRow) 
    return; 
    var dt = (e.Row.DataItem as DbDataRecord).GetDateTime(4); 
    e.Row.Cells[4].Text = dt.ToString("dd.MM.yyyy"); 
} 

結果如下所示。 DateTime Formatting

+0

你有一些生病的技能兄弟 – Ruchan 2014-11-19 09:39:02

1
var currentDateTime = dateTime.Now(); 
var date=currentDateTime.Date; 
+0

你也可以使用 'yourDateObj.ToShortDateString();' – 2017-10-18 09:26:42