Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations John Tel on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

How do I display DD/MM/YY date format in IE5?

Status
Not open for further replies.

asotransporte

Programmer
Oct 9, 2000
1
US
My database is configurated to use DD/MM/YY date format, which is used as standard here in Venezuela, but my asp page always returns MM/DD/YY format. What shall I do?
Best regards,
Ricardo Lerch [sig][/sig]
 
One approach would be that when you SELECT from the table, use the CONVERT function on the date column to format it as you want. [sig]<p>Robert Bradley<br><a href=mailto: > </a><br><a href= - Visual FoxPro Development</a><br> [/sig]
 
If you use the line
<%
date = formatdatetime(date, VbGeneralDate)
%>
where 'date' is the date being displayed, it should change it for you

Simon [sig][/sig]
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top