Re: Date & number format

> Date (example: mmddyyyy) [       ]
> 
> This format requires input in one field with no spaces and no punctuation.
> It also means less tabbing, but may be confusing to some and thus lead to
> errors.

There is a lot of code around that will cope with dates in almost any format,
including "yesterday", "3 days ago", etc.   The only real problem with dates
is handling the dd mm yy/mm dd yy/yy mm dd/ trichotomy - that is normally
handled by knowing the locale of the user in non-web cases, but a web
application doesn't have access to that and might need to query ambiguous
cases.

The most user friendly way with dates is to use a free text field and
let the user choose their format.

Received on Thursday, 4 December 2003 17:26:16 UTC