hello,
i have an app that was developed with classic ASP(VBScript). my regional language and settings is Romanian. i've copied the local settings to reserved accounts. the database is SQL 2000.
when i write this:
"insert into import_curs (data, valoare) select '06/09/2009', 1571.23 " it's ok. the month is 6, day 9.
but when i write this:
RS.Open "import_curs",Conn,3,3
RS.AddNew()
RS("data")="06/09/2009"
RS("valoare") = 1571.23
RS.UpdateBatch(adAffectAll)
RS.Close
the month is 9 and the day is 6. i really dont know what and where to change this behavior. i have to mention that this is working well in IIS 5.1, IIS 6.
thank you in advance.