[SOLVED] Â AddHours to Datetime |
1/17/2019 20:10:01 | |
| ASPRunner.NET General questions | ||
|
I am trying to add values to another table after record added. One of the values passed is values["DateTime"] dynamic tblCC = GlobalVars.dal.Table("dbo.CC");
|
||
|
|
Sergey Kornilov admin 1/17/2019 |
|
You need to convert values["DateTime"] to DateTime type first: dynamic tblCC = GlobalVars.dal.Table("dbo.CC"); |
|
|
|
jadach authorDevClub member 1/18/2019 |
|
Thanks. Works perfect. |
|