how do i validate the date inserted from textbox to check whether that is follow the date requirement... i wrote this...
if not (isnumeric(inserteddate)) then
if isdate(inserteddate) then
inserteddate = DateDiff("S", "01/01/1970 00:00:00", inserteddate) else
response.write "Date Invalid"
exit function
end if
end if
but is never work!!!!!!!!!!!!!!!!!!!!!!!!!