摘要:
最近业务部门总是反馈说查询出来的文档发布日期不对,检查后发现,实际日期和显示的日期总有8H的差值。8这个数字应该就是北京时间和UTC时间的时差了。翻阅了一些资料(http://www.novolocus.com/2008/07/31/sharepoint-web-services-and-utc-time-fun-and-games/),下面做一些测试。我们知道Sharepoint是支持多个时区的,用户可以设置自己合适的时区。因此sharepoint采用UTC方式来存储时间,不管哪个时区的时间,最终写入sharepoint的都是UTC时间。测试环境:Sharepoint 2010测试数据:以2 阅读全文
摘要:
需求:创建带Code-Behind的网站页面,并通过Action在sharepoint中显示。实现:1.创建带Code-Behind的sharepoint网站页面。新建空白sharepoint项目,在项目中添加模块CustomPages。将Sample.txt修改为MyTemplate.aspx。添加以下内容。 接下来需要创建Code-Behind代码,在CustomPages文件夹右键,添加类MyPageTemplate.aspx.cs。在类中添加以下内容。using System;using System.Collections.Generic;using System.Li... 阅读全文