通过 Web 服务的 SharePoint:如何传递日期?

发布于 2024-08-06 15:23:58 字数 372 浏览 1 评论 0原文

尝试使用列表 Web 服务将日期传递给添加项目:

string item = "<Method ID=\"1\" Cmd=\"New\">" +
                  @"<Field Name=""AcceptanceTime"">" + DateTime.Now + "</Field>"

但它生成了异常:

0x8102001c Invalid date/time value
A date/time field contains invalid data. Please check the value and try again.

知道如何在此处成功传递日期吗?

Trying to pass a date to an add item with the Lists web service using:

string item = "<Method ID=\"1\" Cmd=\"New\">" +
                  @"<Field Name=""AcceptanceTime"">" + DateTime.Now + "</Field>"

But it's generating an exception:

0x8102001c Invalid date/time value
A date/time field contains invalid data. Please check the value and try again.

Any idea how to pass a date here successfully?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

温柔女人霸气范 2024-08-13 15:23:58

Sharepoint 需要以下格式的日期......

YourDateTime.ToString("yyyy-MM-ddTHH:mm:ssZ")

Sharepoint requires the date in the following format....

YourDateTime.ToString("yyyy-MM-ddTHH:mm:ssZ")
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文