May 23, 2005 #1 mdr227 Programmer Nov 17, 2000 114 US What is the best way to display a date field in the format March 26, 2005 I have tried formatdatetime, but that adds the written out day of the week which I don't need.
What is the best way to display a date field in the format March 26, 2005 I have tried formatdatetime, but that adds the written out day of the week which I don't need.
May 23, 2005 #2 DotNetGnat Programmer Mar 10, 2005 5,548 IN Try this: Response.Write(Month(yourDateField) Day(yourDateField), Year(yourDateField)) -DNG Upvote 0 Downvote
May 23, 2005 #3 DotNetGnat Programmer Mar 10, 2005 5,548 IN oops try: MonthName(Month(yourDateField) to get the name of the Month. -DNG Upvote 0 Downvote