我的情况是在本地工作但不在托管(godaddy.com)
DateTime date = DateTime.Parse(TextBoxSelectedDate.Text.Trim());
string d = date.ToString("yyyy-MM-dd");
//localhost 输出 2013-10-13
DateTime.Parse(d);
但是当我主持时给出了这个例外
System.FormatException: String was not recognized as a valid DateTime.
为什么是这样
谢谢