在sharepoint里面发表了blog或者wiki! 在vs里面用wss对象模型取出来的时间有时遇到不一致的情况!
原因:sharepoint使用的是UTC国际标准,而中国的时间比UTC时间晚8小时!
1.电脑系统设置时间和sharepoint里面的时间时区设置不一致:
Sharepoint中设置时区:
1. Site Settings.
2. Site Administration->Regional settings.
3. Time Zone
2.在vs中取时间的代码问题!
SPListItem folder = splist.Folders[0];
LastModified = (folder["Last Updated"]).ToString()。
在样写就有误:LastModified = folder.Fields["Last Updated"].GetFieldValueAsHtml(folder["Last Updated"])。
我就是这样解决的!
3. 还有可能就是:
当使用SPListItem返回的时间是按照UTC时间(比北京时间晚8个小时),需要我们用代码去转换一下时间,示例如下:
//Create DateTime object, 如果是字符串的话,您可以使用DateTime.ParseExact去创建
DateTime time = DateTime.ParseExact(....);
// First get the current SPTimeZone of SPWeb:
SPTimeZone timeZone = web.RegionalSettings.TimeZone;
// Convert date and time in local:
DateTime localDT = timeZone.UTCToLocalTime (time);
4. 当然还有一种最好的办法就是:
DateTime dt = DateTime.Parse("youTime").ToLocalTime();
能解决问题的方法是最好的!
本文来自CSDN博客,转载请标明出处:http://blog.csdn.net/jinho/archive/2010/02/25/5325526.aspx