HOME  >  ÀÚ·á   >  ASPÀÚ·á½Ç
¹øÈ£ Á¦¸ñ Á¶È¸
45
ASP TextStream Object
846
44
ASP FileSystemObject Object
879
43
ASP ASPError Object
995
42
ASP Server Object
813
41
ASP Session Object
777
40
ASP Application Object
1265
39
VBScript Keywords
799
38
VBScript Year Function
1369
37
VBScript WeekdayName Function
743
36
VBScript Weekday Function
804
35
VBScript TimeValue Function
773
34
VBScript TimeSerial Function
763
33
VBScript Timer Function
767
32
VBScript Time Function
795
31
VBScript Second Function
777
30
VBScript Now Function
752
29
VBScript MonthName Function
805
28
VBScript Month Function
905
27
VBScript Minute Function
957
26
VBScript IsDate Function
1039
È®´ë   Ãà¼Ò    
The IsDate function returns a Boolean value that indicates if the evaluated expression can be converted to a date. It returns True if the expression is a date or can be converted to a date; otherwise, it returns False.

Note: The IsDate function uses local setting to determine if a string can be converted to a date ("January" is not a month in all languages.)
Syntax
IsDate(expression)

Parameter 	Description
expression 	Required. The expression to be evaluated

Example 1

Legal dates:
<%

response.write(IsDate("April 22, 1947"))
response.write("< br />")
response.write(IsDate(#01/31/10#))

%>

The output of the code above will be:
True
True

Example 2

Illegal dates:
<%

response.write(IsDate("#01/31/10#"))
response.write("< br />")
response.write(IsDate("52/17/2010"))
response.write("< br />")
response.write(IsDate("Hello World!"))

%>

The output of the code above will be:
False
False
False
1 2 3

 
sitemap    
all right reserved : ÀÌ ¸ðµç °Å! ´Ù~ ³»²¨!