Lotus Notes & C#:将 Date 值传递给字段
本文关键字:值传 Date 字段 Notes amp Lotus | 更新日期: 2023-09-27 18:35:38
我正在尝试编写一个应用程序,该应用程序将日期值(Date
Notes
)存储在Document
中。
如何将"日期"值从我的C#
应用程序传递到LotusNotes
?
创建一个NotesDateTime
对象,将值设置为现在并分配给您的字段:
NotesDateTime dateTime = session.createDateTime("");
dateTime.SetNow();
doc.replaceItemValue("TheDateField", dateTime);