c# - Date format problem in new lotus domino document -


i have problem data format. when create document in lotus database (in lotus client) date inserted without time

field name: data_fim
data type: time/date
data length: 8 bytes
seq num: 1
dup item id: 0
field flags: summary

'2011-01-26`

when create/change c# contains time:

field name: data_inicio
data type: time/date
data length: 8 bytes
seq num: 12
dup item id: 0
field flags: summary

2010-12-15 00:00:00 cet

command used change doc

doc.replaceitemvalue("data_inicio", convert.todatetime( "2010-12-15"));

thank in advance

use datetime formatting


Comments

Popular posts from this blog

java - SNMP4J General Variable Binding Error -

windows - Python Service Installation - "Could not find PythonClass entry" -

Determine if a XmlNode is empty or null in C#? -