-3

我试着转换这个

DateTime Todate = DateTime.ParseExact("22/08/2012", "dd/MM/yyyy", null);

得到输出:

8/21/2012 12:00:00 AM

如何在 dd/MM/yyyy 中获取日期输出

编辑: 我从日历文本框中获取文本作为字符串“22/08/2012”,现在我需要将其转换为 dateTime 数据类型以通过 DateTime DataType 中的 DAL 类变量插入到 DB

string[] f1 = datepicker1.Text.Split(' ');
string[] t1 = datepicker2.Text.Split(' ');
DateTime Fromdate1 = DateTime.ParseExact(f1[0], "dd/MM/yyyy", CultureInfo.InvariantCulture);
//Convert.ToDateTime(datepicker1.Text);
DateTime Todate1 = DateTime.ParseExact(t1[0], "dd/MM/yyyy", null);
ObjSeasonPrice.SeasonPriceName = txtSeasonPriceName.Text.Trim();
ObjSeasonPrice.PropertyId = Convert.ToInt32(propId.ToString());
ObjSeasonPrice.RoomId = Convert.ToInt32(roomId.ToString());
ObjSeasonPrice.RatePerNight = Convert.ToDecimal(txtRatePerNight.Text);
ObjSeasonPrice.Days = getAllDaysWithComma();
ObjSeasonPrice.AdditionalBenefits = txtAdditionalBenifits.Text.Trim();
ObjSeasonPrice.Status = ddlStatus.SelectedItem.ToString();
ObjSeasonPrice.IsDeleted = Convert.ToBoolean("False");
ObjSeasonPrice.FromDate = Fromdate1;
ObjSeasonPrice.ToDate = Todate1;

抱歉信息太少,但为什么你们一直在投票而没有花时间完全理解这个问题。

4

2 回答 2

3

尝试这个:

DateTime Todate = DateTime.ParseExact("22/08/2012", "dd/MM/yyyy", null);
Todate.ToString("dd/MM/yyyy"); // output in your chosen format.

关键是 Todate 是一个 DateTime 对象,因此它实际上在内部将日期和时间存储为一个大数字。如果要以某种格式显示它,则将其转换为字符串。见这里:http: //msdn.microsoft.com/en-us/library/8kb3ddd4.aspx

编辑:如果您想更改默认显示格式,DateTime请参见此处:设置默认日期时间格式 c#

于 2012-08-21T12:03:50.823 回答
0
Todate.ToString("dd/MM/yyyy")

将以您指定的格式输出日期

于 2012-08-21T12:02:56.537 回答