摘要: Windows SharePoint Services 2.0 以协调世界时 (UTC) 格式存储日期和时间值,而且几乎所有由对象模型成员返回的日期和时间都是 UTC 格式。一个例外是通过 SPListItem 类的索引器获取的列表栏值,其格式为网站的本地时间。使用 SPQuery 类的 DatesInUtc 属性来使用索引器返回 UTC 格式的值。 若要将值从 UTC 格式转换为本地时间,请使用 SPTimeZone 类的 UTCToLocalTime 方法,该方法可以通过当前网站的 RegionalSettings 属性进行访问,如下所示:mySite.RegionalSettings.T 阅读全文
posted @ 2011-07-14 18:08 withsoso 阅读(298) 评论(0) 推荐(0) 编辑
摘要: using System;namespace Microsoft.SharePoint{public enum SPFileSystemObjectType{Invalid = -1,File = 0,Folder = 1,Web = 2,}}using System;namespace Microsoft.SharePoint{public enum SPFileSystemObjectType{Invalid = -1,File = 0,Folder = 1,Web = 2,}}Microsoft.SharePoint.SPBuiltInFieldId 阅读全文
posted @ 2011-07-14 13:55 withsoso 阅读(137) 评论(0) 推荐(1) 编辑
摘要: Here is some resource that related to how to improve the JQuery code performance.http://net.tutsplus.com/tutorials/javascript-ajax/10-ways-to-instantly-increase-your-jquery-performance/http://www.artzstudio.com/2009/04/jquery-performance-rules/ 阅读全文
posted @ 2011-07-14 11:22 withsoso 阅读(183) 评论(0) 推荐(0) 编辑