i got a problem of saving date into access2000 database:<br>whatever I enter the date like 10/07/2000, 07/10/2000, or 10-Jul-2000, CF will save as like 1899-12-30.<br>The code is as below:<br>Page 1:<br><cfform action="DateTestAct.cfm" method="post"><br><cfinput type="text" size="20" name="DateTx"><br><br><cfinput type="text" size="20" name="testTx"><br><input type="submit" name="Submit" value="Submit"><br></cfform><br><br>Action page for page1:<br><br><cfquery datasource="..." name="DateTest"><br>insert into DateTest<br>(<cfif isDate(DateTx)>TestDate,</cfif>test)<br>values(<cfif isDate(DateTx)>#dateFormat(DateTx,"mm/dd/yyyy"
#,</cfif>'#testTx#');<br></cfquery><br><br>If anybody can help me? Thanks a lot!<br>