también puede utilizar yourDateObj.ToShortDateString();
Muhammad Kashif
-2
A veces desea tener su GridView tan simple como:
<asp:GridView ID="grid" runat="server" />
No desea especificar ningún BoundField, solo desea vincular su cuadrícula a DataReader. El siguiente código me ayudó a formatear DateTime en esta situación.
protectedvoidPage_Load(object sender, EventArgs e)
{
grid.RowDataBound += grid_RowDataBound;
// Your DB access code here...// grid.DataSource = cmd.ExecuteReader(CommandBehavior.CloseConnection);// grid.DataBind();
}
voidgrid_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");
}
Respuestas:
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
fuente
value.Date + ""
devuelve eldate 12:00:00 AM
. Úselovalue.Date.ToShortDateString()
para evitar esto.También puede utilizar
DateTime.Now.ToString("yyyy-MM-dd")
para la fecha yDateTime.Now.ToString("hh:mm:ss")
la hora.fuente
Puede usar Instance.ToShortDateString () para la fecha,
e Instance.ToShortTimeString () para obtener la fecha y la hora de la misma instancia.
fuente
var currentDateTime = dateTime.Now(); var date=currentDateTime.Date;
fuente
yourDateObj.ToShortDateString();
A veces desea tener su GridView tan simple como:
<asp:GridView ID="grid" runat="server" />
No desea especificar ningún BoundField, solo desea vincular su cuadrícula a DataReader. El siguiente código me ayudó a formatear DateTime en esta situación.
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"); }
Los resultados que se muestran aquí.
fuente