服务器运行一段时间就会出现这个错误,重启iis就好了
日记记录是:图书配置文件时间异常:2011-3-22 14:54:10,时间格式肯定没错,只要重启下iis就好了
try
{
if (xmlroot.SelectSingleNode("Date").InnerText != null)
book.Date= Convert.ToDateTime(xmlroot.SelectSingleNode("Date").InnerText);
}
catch
{
Log.Save("图书配置文件时间异常:" + xmlroot.SelectSingleNode("Date").InnerText );
}
看到有人跟我的问题是一样的,但是也没有说明白具体是什么原因?大家有没有遇到过这个问题?
同问题:http://social.msdn.microsoft.com/Forums/zh-CN/2212/thread/6f669494-306e-4c6f-9276-ff1c86993482/
试试:
DateTime.ParseExact(xmlroot.SelectSingleNode("Date").InnerText,
"yyyy-M-d HH:mm:ss", CultureInfo.InvariantCulture)
同意楼上
请问这个问题解决了吗?我目前也遇到了这个问题。