Ive got a page that does a select statement against an oracle database. The page works fine until it hits a date that the user has mistakenly put in as 0007, 0r 0068 instead of 1907, 2007, or 1968. Im using something like:
strsql = "select mydate from mytable"
set rstsearch=cnnsearch.execute(strsql)
<td>
<%=rstsearch.fields("mydate"),value %>
</td?
can anybody tell me why these dates fail? The may be incorrect data entry, but they are actual dates. A person might not have been born in 01/01/0076, but it IS a valid date.
thanks for any comments
strsql = "select mydate from mytable"
set rstsearch=cnnsearch.execute(strsql)
<td>
<%=rstsearch.fields("mydate"),value %>
</td?
can anybody tell me why these dates fail? The may be incorrect data entry, but they are actual dates. A person might not have been born in 01/01/0076, but it IS a valid date.
thanks for any comments