Ask a Question related to Dreamweaver AppDev, Design and Development.
-
I Need Help! #1
Date formatting on your dynamic pages?
In Access I have date set to Date/Time with default value Date() and it is in the correct
format.
On website date appears as mm/dd/yy
I want it to appear as dd/mm/yy
I Need Help! Guest
-
Date Formatting
Use the Day function. response.write day("12/1/2003") Of course, is that date the first of December, or the twelth of January? I suggest you... -
formatting a date in cfselect
Assuming a query "meetingdate" that grabs a unique value of the 'meetingdate' field (a date/time field). In a form, that query is used to populate a... -
Formatting and sorting date
I have an asp page which displays records from an access table. One of the fields in the table is a date field. The regional settings on the... -
formatting date
On 30/7/03 2:18 PM, in article bg7guu$b7j$1@forums.macromedia.com, "JemJam" <webforumsuser@macromedia.com> wrote: The systemDate object will... -
Date - formatting
I'm needing to assign the following variable with the following data from the date. Does anyone have any help they could offer please? date_day =... -
bthouin #2
Re: Date formatting on your dynamic pages?
That's normal, that's the interesting US date format...
I made myself a neat little function that formats the date as dd.mm.yy
(Swiss format), and that works fine.
I Need Help! wrote:> In Access I have date set to Date/Time with default value Date() and it is in the correct
> format.
>
> On website date appears as mm/dd/yy
>
> I want it to appear as dd/mm/yy
>
>
>bthouin Guest
-
I Need Help! #3
Re: Date formatting on your dynamic pages?
..... and it is?
"bthouin" <bernard_thouin@bluewin.ch> wrote in message
news:d1hj47$kia$1@forums.macromedia.com...
That's normal, that's the interesting US date format...
I made myself a neat little function that formats the date as dd.mm.yy
(Swiss format), and that works fine.
I Need Help! wrote:correct> In Access I have date set to Date/Time with default value Date() and it is in the> format.
>
> On website date appears as mm/dd/yy
>
> I want it to appear as dd/mm/yy
>
>
>
I Need Help! Guest
-
Jon Spivey #4
Re: Date formatting on your dynamic pages?
It would be
SELECT format(DateField, "d/m/yyyy")
FROM Table
You can format the date however you like, eg dddd=weekday name (Saturday)
ddd= short weekday(Sat) mmmm=month (March) mmm = short month (Mar) and so
on.
Cheers,
Jon
"I Need Help!" <iamedia-nospam@hotmail.com> wrote in message
news:d1i7up$ffm$1@forums.macromedia.com...> .... and it is?
>
>
>
>
> "bthouin" <bernard_thouin@bluewin.ch> wrote in message
> news:d1hj47$kia$1@forums.macromedia.com...
> That's normal, that's the interesting US date format...
>
> I made myself a neat little function that formats the date as dd.mm.yy
> (Swiss format), and that works fine.
>
>
> I Need Help! wrote:> correct>> In Access I have date set to Date/Time with default value Date() and it
>> is in the>>> format.
>>
>> On website date appears as mm/dd/yy
>>
>> I want it to appear as dd/mm/yy
>>
>>
>>
>
Jon Spivey Guest
-
I Need Help! #5
Re: Date formatting on your dynamic pages?
I was told this, and it works.
place this script <%Session.LCID = 2057%> just below the opening script (being UK) . See
link for the code that suites your own country.
[url]http://msdn.microsoft.com/library/default.asp?url=/library/en-us/script56/html/vsmscLCID.asp[/url]
thanks for your the help!
"Jon Spivey" <jons@mvps.org> wrote in message news:d1ia03$hoa$1@forums.macromedia.com...
It would be
SELECT format(DateField, "d/m/yyyy")
FROM Table
You can format the date however you like, eg dddd=weekday name (Saturday)
ddd= short weekday(Sat) mmmm=month (March) mmm = short month (Mar) and so
on.
Cheers,
Jon
"I Need Help!" <iamedia-nospam@hotmail.com> wrote in message
news:d1i7up$ffm$1@forums.macromedia.com...> .... and it is?
>
>
>
>
> "bthouin" <bernard_thouin@bluewin.ch> wrote in message
> news:d1hj47$kia$1@forums.macromedia.com...
> That's normal, that's the interesting US date format...
>
> I made myself a neat little function that formats the date as dd.mm.yy
> (Swiss format), and that works fine.
>
>
> I Need Help! wrote:> correct>> In Access I have date set to Date/Time with default value Date() and it
>> is in the>>> format.
>>
>> On website date appears as mm/dd/yy
>>
>> I want it to appear as dd/mm/yy
>>
>>
>>
>
I Need Help! Guest



Reply With Quote

