I have a input field on a form which defaults to a variable:
<input type="text" name="datecomplete" size="50" value="<%=p_datecomplete%>">
When the form is submitted it writes to an access database.
I want it to be formated as dd/mm/yy but,
if I enter 13/12/01 it writes 01/12/2013 to the DB
but if i enter 13/12/2001 it writes 13/12/2001
It seems V. strange,
Is there a way I can format the field to accept dates in the format dd/mm/yy
Thanks
Leigh
<input type="text" name="datecomplete" size="50" value="<%=p_datecomplete%>">
When the form is submitted it writes to an access database.
I want it to be formated as dd/mm/yy but,
if I enter 13/12/01 it writes 01/12/2013 to the DB
but if i enter 13/12/2001 it writes 13/12/2001
It seems V. strange,
Is there a way I can format the field to accept dates in the format dd/mm/yy
Thanks
Leigh