DateTime
日付と時刻を持つインスタンスがあります。日付のみまたは時刻のみを抽出するにはどうすればよいですか?
回答:
DateTime.Now.ToString("yyyy-MM-dd")
日付と時刻にも使用できDateTime.Now.ToString("hh:mm:ss")
ます。
あなたは使用することができますInstance.ToShortDateString()日付の、
およびInstance.ToShortTimeStringを() 同じインスタンスから日付と時刻を取得するための時間のために。
var currentDateTime = dateTime.Now();
var date=currentDateTime.Date;
yourDateObj.ToShortDateString();
GridViewを次のように単純にしたい場合があります。
<asp:GridView ID="grid" runat="server" />
BoundFieldを指定する必要はなく、グリッドを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");
}
ここに示す結果。