Sep 6, 2006 #1 mdr2273 Programmer Joined Sep 4, 2006 Messages 22 Location US How can I format a date field of the value say "9/6/2006" to show as Weds, Sept 6th?
Sep 6, 2006 #2 DotNetGnat Programmer Joined Mar 10, 2005 Messages 5,548 Location IN try this... mydate=now() response.write weekdayname(mydate) & monthname(mydate) & day(mydate) -DNG Upvote 0 Downvote
Sep 6, 2006 Thread starter #3 mdr2273 Programmer Joined Sep 4, 2006 Messages 22 Location US It is giving me an error on the weekdayname function Upvote 0 Downvote
Sep 6, 2006 #4 DotNetGnat Programmer Joined Mar 10, 2005 Messages 5,548 Location IN sorry...it should be mydate=now() response.write WeekdayName(Weekday(mydate))) & monthname(mydate) & day(mydate) -DNG Upvote 0 Downvote
sorry...it should be mydate=now() response.write WeekdayName(Weekday(mydate))) & monthname(mydate) & day(mydate) -DNG