设置字段 DateTime 以 dd/mm/yyyy hh:mm:ss 格式显示日期和时间
Set field DateTime to show the date and time in the format dd/mm/yyyy hh:mm:ss
此代码从 table 中获取日期以在 table 中显示给用户
using System;
using System.Data;
using System.Configuration;
using System.Web;
using System.Web.Security;
using System.Collections;
using System.Collections.Generic;
using System.Text;
namespace Form
{
public class RelUso
{
public DateTime Date { get; set; }
}
public RelUso()
{
atribuiValores(row);
}
public RelUso(DataRow row)
{
assignValues(row);
}
protected void assignValues(DataRow row)
{
this.Data = Convert.ToDateTime(row["Date"]);
}
}
它获取数据库中的日期 yyyy-mm-dd hh:mm:ss。我可以在 DateTime
中使用一些方法将日期格式更改为 dd/mm/yyyy hh:mm:ss
使用
Convert.ToDateTime(row["Date"]).ToString("dd/MM/yyyy HH:mm:ss")
您可以使用以下代码将 DateTime 结构转换为字符串:
var dt = DateTime.Now;
string str = dt.ToString("yyyy-MM-dd hh:mm:ss"); //(For month use caps 'MM')
此代码从 table 中获取日期以在 table 中显示给用户
using System;
using System.Data;
using System.Configuration;
using System.Web;
using System.Web.Security;
using System.Collections;
using System.Collections.Generic;
using System.Text;
namespace Form
{
public class RelUso
{
public DateTime Date { get; set; }
}
public RelUso()
{
atribuiValores(row);
}
public RelUso(DataRow row)
{
assignValues(row);
}
protected void assignValues(DataRow row)
{
this.Data = Convert.ToDateTime(row["Date"]);
}
}
它获取数据库中的日期 yyyy-mm-dd hh:mm:ss。我可以在 DateTime
中使用一些方法将日期格式更改为 dd/mm/yyyy hh:mm:ss
使用
Convert.ToDateTime(row["Date"]).ToString("dd/MM/yyyy HH:mm:ss")
您可以使用以下代码将 DateTime 结构转换为字符串:
var dt = DateTime.Now;
string str = dt.ToString("yyyy-MM-dd hh:mm:ss"); //(For month use caps 'MM')