Form Date

S

Shona

Hi

I have a form that the results are ordered by date and then time but when
the results come through the date format is incorrect eg 7/22/2003.
Although I have set it in the Database to Short Date Format.

Does anyone how I can correct this.

Cheers Shona
 
T

Thomas A. Rowe

"7/22/2003" is the short date format.

--

==============================================
Thomas A. Rowe (Microsoft MVP - FrontPage)
WEBMASTER Resources(tm)

FrontPage Resources, Forums, WebCircle,
MS KB Quick Links, etc.
==============================================
 
T

Thomas A. Rowe

You just need to add the following at the top of any ASP page in HTML view
that you want to display the date or currency in the UK format:

<%
Session.LCID = 2057
%>

--

==============================================
Thomas A. Rowe (Microsoft MVP - FrontPage)
WEBMASTER Resources(tm)

FrontPage Resources, Forums, WebCircle,
MS KB Quick Links, etc.
==============================================
 
Top