Lotus Notes 和 C#:将日期值传递给字段
Lotus Notes & C#: Passing a Date value to a field
我正在尝试编写一个将日期值(Notes
中的 Date
)存储在 Document
中的应用程序。
如何将 "Date" 值从我的 C#
应用程序传递到 LotusNotes
?
创建一个 NotesDateTime
对象,将值设置为 now 并分配给您的字段:
NotesDateTime dateTime = session.createDateTime("");
dateTime.SetNow();
doc.replaceItemValue("TheDateField", dateTime);
我正在尝试编写一个将日期值(Notes
中的 Date
)存储在 Document
中的应用程序。
如何将 "Date" 值从我的 C#
应用程序传递到 LotusNotes
?
创建一个 NotesDateTime
对象,将值设置为 now 并分配给您的字段:
NotesDateTime dateTime = session.createDateTime("");
dateTime.SetNow();
doc.replaceItemValue("TheDateField", dateTime);