Thanks, will try soon as i get chance.
"Piers 2k" <fake@msn.com> wrote in message
news:e3frp2$ppk$1@forums.macromedia.com...
> There's no built in function or any other argument to do
it automatically.
> You have to pull each part out separately, and format if
necessary.
> This should do (making changes for date field):
>
> <%
> Dim DateFieldName
> Result = WeekDayName( DatePart("w",DateFieldName) )
& ", "
> Result = Result & Day(DateFieldName) & " "
> Result = Result & MonthName( Month(DateFieldName) )
> Response.Write(Result)
> %>
>
> Have a look at the Date functions:
>
http://www.w3schools.com/vbscript/vbscript_ref_functions.asp#date
>
> HTH,
> Piers
>
>