출처 : http://menote.tistory.com |
Now() ==> 2009-07-09 오후 4:48:49 Date() ==> 2009-07-09 Time() ==> 오후 4:48:49 FormatDateTime(Now(), 0) ==> 2009-07-09 오후 4:48:49 FormatDateTime(Now(), 1) ==> 2009년 7월 9일 목요일 FormatDateTime(Now(), 2) ==> 2009-07-09 FormatDateTime(Now(), 3) ==> 오후 4:48:49 FormatDateTime(Now(), 4) ==> 16:48 ----------------------- ** YYYY-MM-DD HH24:MI:SS (오라클 기준) FormatDateTime(Now(), 2) ==> 2009-07-09 FormatDateTime(Now(), 4) ==> 16:48 Right(Now(), 3) ==> :49 ====> 2009-07-09 16:48:49 ----------------------- Left(Date(), 4) ==> 2009 (년) Mid(Date(), 6, 2) ==> 07 (월) Int(Mid(Date(), 6, 2)) ==> 7 (월) ----------------------- |
'프로그래밍' 카테고리의 다른 글
ASP - CHEditor 3.1 사용법 (0) | 2011.10.06 |
---|---|
ASP - 내장함수 (0) | 2011.08.17 |
ASP - 최근본 상품 (0) | 2011.08.17 |
ASP - 쿠키 유지기간 설정 (0) | 2011.08.17 |
CSS - 백그라운드 반복 Repeat (0) | 2011.08.17 |