Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations bkrike on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Date Display Question

Status
Not open for further replies.

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.
 
Try this:

Response.Write(Month(yourDateField) Day(yourDateField), Year(yourDateField))

-DNG
 
oops try:

MonthName(Month(yourDateField) to get the name of the Month.

-DNG
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top