T
|
Tim 12/11/2022 |
David, If you just want the data written to the DB as you save a new record, then, in the "Before record added" event, use this: values["CreatedDate"]=DateTime.Now.ToString("yyyy-MM-dd hh:mm:ss tt"); Obviously swap "CreatedDate" with your field name. If you want the date to show on the web page, then in the properties of the field you can set the default value to DateTime.Now. Hope that helps. |
D
|
david powell author 12/11/2022 |
Hi Tim, Part of the processing logic is to insert a record into a data log table logdata=XVar.Array(); |
![]() |
Admin 12/11/2022 |
28/06/2000 14:12:10 is definitely not a correct format. For a date field use 2000-06-28 |
D
|
david powell author 12/11/2022 |
Now working! |