| |
mid
Posts: 16
Score: 0
Joined: 6/4/2001
From: USA
Status: offline
|
At aspsamples.com there is section where you can paste ASP code into a textarea, then run it. I did this with the code above, altering it slightly: <%@ language=vbscript%> <% date1 = 1/1/90 dateMin = 4/3/90 dateMax = 2/16/01 if (date1 < dateMin) then response.write "less" elseif (date1 > dateMax) then response.write "more" end if %> This code executed propery, so we know the logic is correct. For fun I would make your years 4 digits. Post back if you find a solution.
|
|