Hi,
is there any date formatting facility in VBScript? I want to use ASP to return the date from today till 31 days from now to populate a list box. However I want the date as a string i.e. "10 Oct. 2000" etc. so there can be no confusion as to the exact date. The normal VB format functionality doesn't seem to apply. My simple source is below:

<%

'//=========================================================
'// Populate list box with dates for the next 31 days
'//=========================================================

dim day_count
day_count = 0

Response.Write "<SELECT NAME=selListBox>"
do until day_count = 31
Response.Write " <option>" & date() + day_count & "</option>"
day_count = day_count + 1
loop
Response.Write "</SELECT>"
%>