date validation in classic asp

Unlinsdip

New Member
date validation in classic aspi am new in classic asp and having problem in validating the date\[code\]dim Day,Month,Year,FullDateDay = "01"<br/>Month = "20"<br/>Year = "2012"<br/>FullDate = Month + "/" + Day + "/" + Yeardocument.write FullDatedocument.write IsDate(FullDate)document.write IsDate(CDate(FullDate))document.write IsDate(20/01/2012)\[/code\]output : \[code\]20/01/2012true true false\[/code\]
 
Back
Top