FormatDateTime(Date[, NamedFormat])
date
Required. Date expression to be formatted.
- NamedFormat
-
-
Optional. Numeric value that indicates the date/time format used. If omitted, vbGeneralDate is used.
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). |
Function GetCurrentDate
' FormatDateTime formats Date in long date.
GetCurrentDate = FormatDateTime(Date, 1)
End Function
Response.Write FormatDateTime(Now, 0) & "<br>" '2005-06-21 오후 2:56:46
Response.Write FormatDateTime(Now, 1) & "<br>" '2005년 6월 21일 화요일
Response.Write FormatDateTime(Now, 2) & "<br>" '2005-06-21
Response.Write FormatDateTime(Now, 3) & "<br>" '오후 2:56:46
Response.Write FormatDateTime(Now, 4) & "<br>" '14:56
'Developer > ASP (Active Server Page)' 카테고리의 다른 글
asp 내장함수 (0) | 2008.08.07 |
---|---|
IIS 6.0에서 ASP include file 에러 발생시 대처법 (0) | 2007.12.27 |
FileSystemObject개체 (0) | 2007.07.03 |