Sep 6, 2006 #1 mdr2273 Programmer Sep 4, 2006 22 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 Mar 10, 2005 5,548 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 Sep 4, 2006 22 US It is giving me an error on the weekdayname function Upvote 0 Downvote
Sep 6, 2006 #4 DotNetGnat Programmer Mar 10, 2005 5,548 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