Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
当我转换日期时间时:
SPUtility.CreateISO8601DateTimeFromSystemDateTime(dataInicioCampanhas);
我收到日期 - 1 天。
我在 c# 的 VisualWebPart 中
最有可能:因为 ISO 日期是通用协调时间,而您的本地设置在此之前。因此,当您所在的位置是 0500 时,ISO 中的前一天可能是 2300。
ISO 标准从 GMT 开始运行,因此您需要考虑该调整,例如 EST 是 -05:00,所以我必须从 GTM 中减去 5 小时