通过 Web 服务的 SharePoint:如何传递日期?
尝试使用列表 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Sharepoint 需要以下格式的日期......
Sharepoint requires the date in the following format....