我正在使用 Visual Studio,我想将文本框中的字符串转换为DateTime
格式。我正在使用该函数Convert.ToDateTime()
,但返回的值是最小值 ( 0/0/0001 00:00:00
)。
问题是什么?
我从文本框中检索字符串的代码。
//pass startdate end date to studentResult.aspx
Session["startdate"] = txtStartDate.Text.ToString();
Session["enddate"] = txtEndDate.Text.ToString();
我将字符串转换为日期时间格式的代码。
string startdate = (string)(Session["startdate"]);
string enddate = (string)(Session["enddate"]);
DateTime one = Convert.ToDateTime(startdate);
DateTime two = Convert.ToDateTime(enddate);