dim mydate, mytime, timedate, final
set mydate = date
set mytime = time
set timedate = mydate & mytime
set final = formatdatetime(timedate, 0)


Not sure if this will work pulled it out of my head and pulled the other
from a vbscript help file.

Josh


FormatDateTime Function
Returns an expression formatted as a date or time.

FormatDateTime(Date[, NamedFormat])

Arguments
Date

Required. Date expression to be formatted.

NamedFormat

Optional. Numeric value that indicates the date/time format used. If
omitted, vbGeneralDate is used.

Settings
The NamedFormat argument has the following settings:

Constant Value Description
vbGeneralDate 0 Display a date and/or time. If there is a date part, display
it as a short date. If there is a time part, display it as a long time. If
present, both parts are displayed.
vbLongDate 1 Display a date using the long date format specified in your
computer's regional settings.
vbShortDate 2 Display a date using the short date format specified in your
computer's regional settings.
vbLongTime 3 Display a time using the time format specified in your
computer's regional settings.
vbShortTime 4 Display a time using the 24-hour format (hh:mm).


Remarks
The following example uses the FormatDateTime function to format the
expression as a long date and assign it to MyDateTime:

Function GetCurrentDate
   ' FormatDateTime formats Date in long date.
   GetCurrentDate = FormatDateTime(Date, 1)
End Function

-----Original Message-----
From: Bosky, Dave [mailto:[EMAIL PROTECTED]]
Sent: Monday, June 03, 2002 2:45 PM
To: CF-Talk
Subject: RE: datetime formatting


I'm using mySQL with a datetime field.

Thanks,
Dave Bosky


-----Original Message-----
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]
Sent: Monday, June 03, 2002 2:39 PM
To: CF-Talk
Subject: RE: datetime formatting

forget ASP! do it right from the database with a default on the column. in
access use now() in the default field and in MSSQL, use getdate().

Anthony Petruzzi
Webmaster
954-321-4703
[EMAIL PROTECTED]
http://www.sheriff.org


-----Original Message-----
From: Bosky, Dave [mailto:[EMAIL PROTECTED]]
Sent: Monday, June 03, 2002 2:33 PM
To: CF-Talk
Subject: datetime formatting


I need to insert the current date and time into a table whenever a record is
created.
How would I format the current date and time in the following format using
ASP?
YYYY-MM-DD HH:MM:SS
I'm not sure of the proper function in ASP to accomplish this task.

Thanks,
Dave









______________________________________________________________________
Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. http://www.fusionauthority.com/ads.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/[email protected]/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists

Reply via email to