|
ou812 -> RE: Getting and Writing Current Date in AsP (3/6/2008 15:57:14)
|
Personally, I like writing the date to the database at the time of the actual writing. Depending on where your server's timezone is may depend on how you want to do it I use now() for the current date/time and then use dateadd if needed to manipulate the time to account for timezones objRS.Fields("TimeStamp") = dateadd("H",-3,now()) or objRS.Fields("TimeStamp") = now()
|
|
|
|