Hi,
I'm getting a date from a table, and then I want to save it to another table, but I want to save the date in the format dd/mm/yyyy... how do I do that? I don't want to get any 5/5/2004... I want to get 05/05/2004. Thanks for your help
here's my code :
var DateTemp = new Date()
DateTemp = ""+rsGetBGPData("effective
_Date")
strFillBgar += "FromDate = '" + DateTemp + "', " //I build all my SQL statement in the strFillBgar variable then I execute it at the end
Start Free Trial