= FormatDateTime 함수 =
FormatDateTime(Date[,NamedFormat])
Date : 필수적인 인수. 날짜식을 지정합니다
NamedFormat : 선택적인 인수로써 날짜/시간 형식을 나타내는 숫자 값입니다.
이 인수를 생략하면 vbGeneralDate를 사용합니다.
|
- 예제 -
<%
Response.Write FormatDateTime(Now, 0) & "<BR>"
Response.Write FormatDateTime(Now, 1) & "<BR>"
Response.Write FormatDateTime(Now, 2) & "<BR>"
Response.Write FormatDateTime(Now, 3) & "<BR>"
Response.Write FormatDateTime(Now, 4) & "<BR>"
%>