Urgent help needed.
We have a date field on our database called
date_submitted.
I want this date to return only
month, day and year, no day, no time.
In other words, I want:
June 29, 2004
So far, the one I am using is returning:
Day, month and year like:
Tuesday, June 29 2004.
Can I get urgent help in fixing this, please:
We have a date field on our database called
date_submitted.
I want this date to return only
month, day and year, no day, no time.
In other words, I want:
June 29, 2004
So far, the one I am using is returning:
Day, month and year like:
Tuesday, June 29 2004.
Can I get urgent help in fixing this, please:
Code:
varDate = CDate(rs("Date_submitted"))
varDate = FormatDateTime(varDate, 1)