Thanks, I was using some oldish code that I had recycled
from another project I was working on. So I was taking it
from a totally bad approach rather than yours....
*is embarassed to be a coder today

*
Thanks for the response.
Heheh of course nothing is as simple as it seems...
Code: Select all
dte = new Date()
monthDayYear = dte.getMonth()+"/"+dte.getDate()+"/"+dte.getYear()
used as...
produces long format
and...
Code: Select all
monthDayYear = dte.getMonth()+"/"+dte.getDate()+"/"+dte.getYear()
produces off by 1 month/day/year
as of today it likes to write 9/11/2002
so I'm guessing
will produce the proper month... *crosses fingers*
Regards,
Konflict[/code]