Link to home
Start Free TrialLog in
Avatar of MaximusMeridus
MaximusMeridus

asked on

DoDateTime format

Hi there,

How do I format the following

<%= DoDateTime((Bulletin.Fields.Item("EventDateTime").Value), 1, 1033) %>

Tuesday, August 24, 2004

into

Tuesday, August 24


Many thanks

MM
ASKER CERTIFIED SOLUTION
Avatar of j2nku
j2nku
Flag of Estonia image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial

you can do it like this also..

<%
itemDate = Bulletin.Fields.Item("EventDateTime").Value
itemDate = Left(WeekDayName(WeekDay(itemDate)),3) & ", " & MonthName(Month(itmeDate)) & " " & Right("00" & Day(itemDate),2)
%>

neeraj523
Avatar of MaximusMeridus
MaximusMeridus

ASKER

Thanks!
Sorry one last thing..

How do I convert

Tuesday, August 24

to

Tuesday, 24th August