I want to insert date into table name AAA. Table AAA coloum name dat the type of this column date/time m/d/yyyy. Ex. 10/1/2004
dim todaysDate,t,testdate
todaysDate=now()
testdate=FormatDateTime(todaysDate,2)
sql="insert into AAA(dat,price) values('"&testdate&"',"&cp1&")"
But when I check in table AAA the date is like this 1/10/2004 . The form that i want to insert is m/d/yyyy